*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: #FFFDF9;
  color: #2C3E50;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #FF6B6B;
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #FFF9F0;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF6B6B, #F9C74F, #90BE6D);
  border-radius: 8px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== 核心布局 ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, #FFF9F0 0%, #FFF1E6 100%);
}

.text-center {
  text-align: center;
}

.text-accent {
  color: #FF6B6B;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  color: #6C757D;
  line-height: 1.8;
  font-size: 1.02rem;
}

/* ===== 导航 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #F1E8DB;
  box-shadow: 0 2px 40px rgba(255, 107, 107, 0.06);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FF6B6B 0%, #F9C74F 50%, #90BE6D 100%);
}

.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: 900;
  font-size: 1.25rem;
  text-decoration: none;
  color: #2C3E50;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B, #E63946);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  box-shadow:
    0 4px 12px rgba(255, 107, 107, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2C3E50;
  padding: 8px 12px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:not(.nav-cta)::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  width: calc(100% - 24px);
  height: 2px;
  background: linear-gradient(90deg, #FF6B6B, #F9C74F);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.main-nav a:not(.nav-cta):hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a:not(.nav-cta):hover {
  color: #E63946;
  background: rgba(255, 107, 107, 0.07);
}

.nav-cta {
  padding: 10px 24px !important;
  border-radius: 100px !important;
  background: linear-gradient(135deg, #FF6B6B, #E63946) !important;
  color: #FFFFFF !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.45);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid #F1E8DB;
  background: #FFFFFF;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.menu-toggle * {
  display: none;
}

.menu-toggle::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #2C3E50;
  border-radius: 2px;
  box-shadow: 0 7px 0 #2C3E50, 0 -7px 0 #2C3E50;
  transition: all 0.3s ease;
}

.menu-toggle:hover::before {
  background: #FF6B6B;
  box-shadow: 0 7px 0 #FF6B6B, 0 -7px 0 #FF6B6B;
}

/* ===== Hero ===== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  flex-wrap: wrap;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 214, 165, 0.55) 0%, transparent 52%),
    radial-gradient(circle at 12% 85%, rgba(144, 190, 109, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(255, 249, 240, 0.3) 100%),
    linear-gradient(180deg, #FFFDF9 0%, #FFF9F0 100%);
  border-bottom: 1px dashed #E8DCD0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 28%;
  left: 72%;
  width: 10px;
  height: 14px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: #2C3E50;
  opacity: 0.18;
  box-shadow:
    -120px 180px 0 -2px rgba(44, 62, 80, 0.45),
    90px 50px 0 -4px rgba(44, 62, 80, 0.35),
    -40px -70px 0 -3px rgba(44, 62, 80, 0.3),
    140px -90px 0 -5px rgba(44, 62, 80, 0.5);
  pointer-events: none;
}

.hero-content {
  flex: 1 1 440px;
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  background: #FFF3E0;
  color: #E76F51;
  border: 2px dashed #FFD0A4;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -2px;
  color: #2C3E50;
  margin-bottom: 20px;
}

.hero h1::after {
  content: '';
  display: block;
  width: 96px;
  height: 6px;
  margin-top: 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #FF6B6B, #F9C74F, #90BE6D);
}

.hero p {
  font-size: 1.1rem;
  color: #6C757D;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.8;
  border-left: 3px solid #F9C74F;
  padding-left: 16px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0 0 auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  padding: 12px;
  background: linear-gradient(135deg, #FF6B6B 0%, #F9C74F 50%, #90BE6D 100%);
  box-shadow:
    0 16px 48px rgba(255, 107, 107, 0.28),
    0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(6px);
  z-index: 1;
}

.hero-image::after {
  content: '🍉';
  position: absolute;
  bottom: -8px;
  right: -14px;
  font-size: 48px;
  filter: drop-shadow(0 6px 16px rgba(255, 107, 107, 0.4));
  animation: wiggle 3s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #FFFDF9;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B6B, #E63946);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.45);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline {
  background: transparent;
  border: 2px solid #FF6B6B;
  color: #FF6B6B;
}

.btn-outline:hover {
  background: rgba(255, 107, 107, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.15);
}

/* ===== 标签/标题 ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: #FFF3E0;
  border-radius: 100px;
  color: #E76F51;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B6B;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #2C3E50;
  margin-bottom: 14px;
}

.section-desc {
  max-width: 600px;
  opacity: 0.72;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #5C6B73;
}

/* ===== 卡片网格 ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  border: 2px solid #F1E8DB;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #FF6B6B, #F9C74F, #90BE6D);
  transition: width 0.45s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 165, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-6px) rotate(0.5deg);
  border-color: #FFD0A4;
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.14);
}

.category-card:hover::before {
  width: 100%;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FFF1E6, #FFE8D6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.9),
    0 4px 12px rgba(255, 180, 140, 0.15);
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #E63946;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-link:hover {
  color: #FF6B6B;
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* ===== 特性块 ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: 80px 20px 80px 20px;
  overflow: hidden;
  position: relative;
  border: 6px solid #FFFFFF;
  box-shadow:
    0 16px 48px rgba(44, 62, 80, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.5s ease;
}

.feature-image:hover {
  border-radius: 20px 80px 20px 80px;
}

.feature-image::after {
  content: '🍈';
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 36px;
  opacity: 0.9;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: all 0.4s ease;
}

.feature-image:hover::after {
  transform: rotate(20deg) scale(1.15);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-image:hover img {
  transform: scale(1.05);
}

.feature-text {
  padding: 8px 0;
}

.feature-text h3 {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #2C3E50;
  line-height: 1.3;
}

.feature-text p {
  color: #6C757D;
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 8px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  border-bottom: 1px dashed #E8DCD0;
  transition: all 0.3s ease;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li:hover {
  padding-left: 6px;
  color: #E63946;
}

.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #90BE6D;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== 数据条 ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  background: linear-gradient(180deg, #FFFFFF, #FFF9F0);
  border-radius: 24px;
  padding: 32px 20px;
  border: 2px solid #F1E8DB;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 199, 79, 0.25) 0%, transparent 70%);
}

.stat-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.15);
  border-color: #F9C74F;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B6B, #E63946);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9rem;
  color: #6C757D;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 8px;
  text-transform: uppercase;
}

/* ===== 内容墙 ===== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid #F1E8DB;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.content-wall-item::after {
  content: '';
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 8px;
  height: 12px;
  background: #2C3E50;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.12;
  pointer-events: none;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(44, 62, 80, 0.14);
  border-color: #90BE6D;
}

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.9);
  transition: all 0.5s ease;
}

.content-wall-item:hover img {
  filter: saturate(1.15);
  transform: scale(1.03);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #2C3E50;
}

.content-wall-body p {
  font-size: 0.9rem;
  color: #8A817C;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 2px solid #F1E8DB;
  border-left: 4px solid #F1E8DB;
  border-radius: 20px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
}

.faq-item:hover {
  border-color: #FFD0A4;
}

.faq-item.open {
  border-left-color: #90BE6D;
  box-shadow: 0 8px 24px rgba(144, 190, 109, 0.18);
}

.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #2C3E50;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '＋';
  font-size: 1.4rem;
  font-weight: 400;
  color: #FF6B6B;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question {
  color: #E63946;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.72;
  line-height: 1.75;
  color: #5C6B73;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.35s ease;
}

/* ===== CTA横幅 ===== */
.cta-banner {
  padding: 64px 32px;
  text-align: center;
  border-radius: 32px;
  color: #FFFFFF;
  background:
    radial-gradient(circle at 18% 120%, rgba(255, 255, 255, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 90% -20%, rgba(255, 230, 109, 0.65) 0%, transparent 45%),
    linear-gradient(135deg, #FF6B6B 0%, #E63946 100%);
  box-shadow: 0 24px 60px rgba(230, 57, 70, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '🍉';
  position: absolute;
  top: -16px;
  right: 32px;
  font-size: 80px;
  opacity: 0.35;
  animation: float 4s ease-in-out infinite;
}

.cta-banner::after {
  content: '🍈';
  position: absolute;
  bottom: -16px;
  left: 32px;
  font-size: 60px;
  opacity: 0.35;
  animation: float 3s ease-in-out infinite 1s;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  font-size: 1.05rem;
  position: relative;
}

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #E63946;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

/* ===== 页脚 ===== */
.site-footer {
  background: linear-gradient(180deg, #FFF9F0, #FFF0E3);
  padding: 64px 0 32px;
  border-top: 2px solid #FFE8D6;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #8A817C;
  max-width: 280px;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #2C3E50;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: #8A817C;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.footer-col a:hover {
  color: #FF6B6B;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 2px solid #FFE8D6;
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #8A817C;
}

/* ===== 动画 ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== 响应式 ===== */
@media (max-width: 900px) {
  .hero {
    gap: 48px;
    padding: 110px 24px 60px;
  }

  .hero-image {
    width: 280px;
    height: 280px;
  }

  .feature-block {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    text-align: center;
    padding: 96px 24px 48px;
    gap: 40px;
  }

  .hero-content {
    flex-basis: auto;
    max-width: 100%;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-top: 3px solid #F9C74F;
    padding-left: 0;
    padding-top: 12px;
  }

  .hero h1::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .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, 249, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    gap: 12px;
    border-bottom: 3px solid #F9C74F;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .main-nav.open a {
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .cta-banner {
    padding: 48px 24px;
  }

  .cta-banner h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero {
    padding-top: 88px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-image {
    width: 200px;
    height: 200px;
  }

  .section {
    padding: 48px 0;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .cta-banner::before {
    font-size: 52px;
    right: 12px;
  }

  .cta-banner::after {
    font-size: 40px;
    left: 12px;
  }
}