```css
:root {
  --coral: #FF5C39;
  --teal: #00C2A8;
  --yellow: #FFD23F;
  --cream: #FFFDF7;
  --ink: #2D2A26;
  --light-coral: #FFE8E0;
  --light-teal: #E0F5F2;
  --light-yellow: #FFF2CC;
  --light-pink: #FDF0EF;
  --footer-bg: #F5F0E8;
}

/* 基础重置 */
*, *::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;
}

/* 选中文本 */
::selection {
  background: var(--yellow);
  color: var(--ink);
}

/* 滚动条 */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover { background: #ff4020; }

/* 核心布局 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #F9F5EF;
}

/* 导航 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 42, 38, 0.06);
  box-shadow: 0 2px 30px rgba(45, 42, 38, 0.04);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--yellow) 55%, var(--teal) 100%);
  z-index: 10;
}

.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: 12px;
  font-weight: 900;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 92, 57, 0.3);
  transform: rotate(-6deg);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(6deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.8;
  position: relative;
  transition: opacity 0.25s, color 0.25s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.main-nav a:hover {
  opacity: 1;
  color: var(--coral);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  border-radius: 100px !important;
  color: #fff !important;
  font-weight: 700 !important;
  background: var(--coral);
  box-shadow: 0 4px 14px rgba(255, 92, 57, 0.3);
  opacity: 1 !important;
  transition: transform 0.25s, box-shadow 0.25s !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 92, 57, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--ink);
  padding: 8px;
  border-radius: 8px;
}

.menu-toggle:hover {
  background: var(--light-coral);
}

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  padding: 140px 0 60px;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 210, 63, 0.35) 0%, transparent 40%),
    radial-gradient(circle at 75% 85%, rgba(0, 194, 168, 0.2) 0%, transparent 45%),
    linear-gradient(135deg, #FFF4E8 0%, var(--cream) 55%, #E8FAF7 100%);
}

.hero::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255, 92, 57, 0.06);
  border-radius: 50%;
  top: -120px;
  left: -80px;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(0, 194, 168, 0.08);
  border-radius: 40px;
  transform: rotate(35deg);
  bottom: 40px;
  right: 8%;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(255, 210, 63, 0.4);
  letter-spacing: 0.06em;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--ink);
}

.hero h1 .text-accent {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: var(--coral);
}

.hero h1 .text-accent::after {
  content: '';
  position: absolute;
  bottom: 0.04em;
  left: -0.02em;
  width: 100%;
  height: 0.18em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
}

.hero p {
  font-size: 1.12rem;
  line-height: 1.7;
  opacity: 0.65;
  max-width: 520px;
  margin-bottom: 36px;
  color: var(--ink);
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

.hero-image {
  flex: 1;
  min-width: 340px;
  max-width: 480px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, var(--coral), #FF8A65, var(--yellow));
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(255, 92, 57, 0.25);
  border: 4px solid #fff;
}

.hero-image::before {
  content: '日';
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.35);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  z-index: 0;
}

.hero-image::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 12%;
  right: 12%;
  animation: float 5s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 28px;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 92, 57, 0.3);
}

.btn-primary:hover {
  background: #f94a25;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 92, 57, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(255, 92, 57, 0.06);
  transform: translateY(-3px);
}

/* 标签/标题 */
.section-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: var(--light-coral);
  color: var(--coral);
  padding: 6px 18px;
  border-radius: 100px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
}

.section-desc {
  max-width: 600px;
  opacity: 0.65;
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
}

/* 卡片网格 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  counter-reset: cards;
}

.category-card {
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(45, 42, 38, 0.06);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  counter-increment: cards;
  overflow: hidden;
}

.category-card:nth-child(1) {
  background: var(--light-coral);
}

.category-card:nth-child(2) {
  background: var(--light-teal);
}

.category-card:nth-child(3) {
  background: var(--light-yellow);
}

.category-card:nth-child(4) {
  background: var(--light-pink);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card::after {
  content: counter(cards, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(45, 42, 38, 0.07);
  z-index: 0;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45, 42, 38, 0.1);
}

.category-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  background: var(--coral);
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(255, 92, 57, 0.25);
}

.category-card:nth-child(2) .card-icon {
  background: var(--teal);
  box-shadow: 0 4px 12px rgba(0, 194, 168, 0.25);
}

.category-card:nth-child(3) .card-icon {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(255, 210, 63, 0.4);
}

.category-card:nth-child(4) .card-icon {
  background: #FF8A65;
  box-shadow: 0 4px 12px rgba(255, 138, 101, 0.3);
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.category-card p {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.card-link {
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.card-link:hover {
  gap: 12px;
  color: var(--coral);
}

/* 特性块 */
.feature-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 360px;
  background: linear-gradient(145deg, var(--teal), #5ADBC9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 194, 168, 0.2);
  border: 4px solid #fff;
}

.feature-image::before {
  content: '✦';
  font-size: 120px;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.feature-text {
  padding: 20px 0;
}

.feature-text .section-label {
  margin-bottom: 14px;
}

.feature-text .section-title {
  margin-bottom: 16px;
}

.feature-text p {
  opacity: 0.65;
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin-top: 8px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.98rem;
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  color: var(--teal);
  background: var(--light-teal);
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* 数据条 */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 36px 20px;
  border-radius: 24px;
  border: 1px solid rgba(45, 42, 38, 0.06);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--coral);
}

.stat-item:nth-child(2)::before { background: var(--teal); }
.stat-item:nth-child(3)::before { background: var(--yellow); }
.stat-item:nth-child(4)::before { background: #FF8A65; }

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(45, 42, 38, 0.06);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--coral);
}

.stat-item:nth-child(2) .stat-number {
  background: linear-gradient(135deg, var(--teal), #5ADBC9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--teal);
}

.stat-item:nth-child(3) .stat-number {
  background: linear-gradient(135deg, #E6A800, var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--yellow);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 10px;
  font-weight: 600;
}

/* 内容墙 */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  counter-reset: wall;
}

.content-wall-item {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(45, 42, 38, 0.06);
  background: var(--cream);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  counter-increment: wall;
}

.content-wall-item::before {
  content: counter(wall, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(8px);
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(45, 42, 38, 0.08);
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45, 42, 38, 0.1);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
}

.content-wall-body p {
  font-size: 0.88rem;
  opacity: 0.6;
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(45, 42, 38, 0.08);
  border-radius: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 92, 57, 0.3);
}

.faq-item.open {
  border-color: var(--coral);
  box-shadow: 0 8px 24px rgba(255, 92, 57, 0.08);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  gap: 16px;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.65;
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeSlideIn 0.3s ease;
}

/* CTA横幅 */
.cta-banner {
  padding: 64px 24px;
  text-align: center;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral) 0%, #FF8A65 40%, var(--yellow) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(255, 92, 57, 0.25);
}

.cta-banner::before {
  content: '✦';
  font-size: 120px;
  position: absolute;
  top: -30px;
  right: 20px;
  color: rgba(255, 255, 255, 0.15);
  transform: rotate(15deg);
}

.cta-banner::after {
  content: '✦';
  font-size: 80px;
  position: absolute;
  bottom: -20px;
  left: 30px;
  color: rgba(255, 255, 255, 0.1);
  transform: rotate(-10deg);
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: var(--cream);
  color: var(--coral);
  box-shadow: 0 8px 24px rgba(45, 42, 38, 0.15);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(45, 42, 38, 0.2);
}

/* 页脚 */
.site-footer {
  padding: 64px 0 28px;
  background: var(--footer-bg);
  margin-top: 80px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--ink);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(45, 42, 38, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-bottom {
  border-top: 1px solid rgba(45, 42, 38, 0.1);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(45, 42, 38, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
}

/* 工具类 */
.text-accent {
  color: var(--coral);
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.65;
  text-align: center;
  line-height: 1.7;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* 动画关键帧 */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(3deg); }
}

@keyframes fadeSlideIn {
  0% { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 0.65; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ⚠️ 响应式 */
@media (max-width: 992px) {
  .feature-block {
    gap: 40px;
  }

  .footer-grid {
    gap: 24px;
  }

  .hero {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 56px 0;
  }

  .site-header::before {
    height: 3px;
  }

  .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: 72px;
    left: 0;
    width: 100%;
    background: rgba(255, 253, 247, 0.98);
    padding: 28px 24px;
    box-shadow: 0 16px 40px rgba(45, 42, 38, 0.1);
    border-bottom: 2px solid var(--coral);
    gap: 20px;
    align-items: flex-start;
  }

  .main-nav.open a {
    font-size: 1.05rem;
  }

  .main-nav.open .nav-cta {
    margin-top: 8px;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .hero {
    flex-direction: column;
    padding-top: 110px;
    padding-bottom: 52px;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    min-height: 320px;
  }

  .hero-image::before {
    font-size: 120px;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner {
    padding: 48px 20px;
    border-radius: 24px;
  }

  .cta-banner::before {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 40px 0;
  }

  .header-inner {
    padding: 0 16px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 1.95rem;
    line-height: 1.1;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    min-height: 240px;
    border-radius: 20px;
  }

  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .feature-image {
    min-height: 240px;
    border-radius: 20px;
  }

  .feature-block {
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }

  .cta-banner {
    padding: 40px 16px;
    border-radius: 20px;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.9rem;
    border-radius: 60px;
  }
}