```css
/* ==============================
   911吃瓜中心网 · 西瓜波普设计系统
   ============================== */

*, *::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-color: #FFF7F2;
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(255, 190, 11, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 75%, rgba(255, 59, 92, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(43, 168, 74, 0.04) 0%, transparent 60%);
  background-attachment: fixed;
  color: #4A2E2A;
  line-height: 1.7;
}

/* ========== 核心布局 ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(odd) {
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 190, 11, 0.09) 0%, transparent 30%);
}

.section:nth-child(even) {
  background: rgba(255, 235, 222, 0.5);
}

/* ========== 导航 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 2px solid #FBE3DC;
  box-shadow: 0 4px 30px rgba(255, 100, 100, 0.05);
}

.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: 800;
  font-size: 1.2rem;
  text-decoration: none;
  color: #4A2E2A;
  letter-spacing: 0.5px;
  transition: transform 0.25s;
}

.logo:hover {
  transform: scale(1.03);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: radial-gradient(circle at 50% 42%,
    #FF3B5C 0%,
    #FF6B6B 55%,
    #FFF0EE 58%,
    #2BA84A 62%,
    #1E7A34 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4), 0 4px 12px rgba(255, 59, 92, 0.2);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4A2E2A;
  letter-spacing: 0.3px;
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #FF3B5C;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, #FF3B5C 0, #FF3B5C 6px, #FFBE0B 6px, #FFBE0B 12px);
  transition: width 0.25s;
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 22px !important;
  border-radius: 50px;
  background: linear-gradient(135deg, #FF3B5C, #FF6B6B);
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 18px rgba(255, 59, 92, 0.3);
  transition: all 0.25s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 59, 92, 0.4);
  filter: brightness(1.05);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: #FFBE0B;
  color: #4A2E2A;
  font-size: 1.4rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 190, 11, 0.4);
  transition: transform 0.2s;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

/* ========== Hero ========== */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%,
    #FF3B5C 0%,
    #FF6B6B 38%,
    #FFF0EE 46%,
    #FFF0EE 49%,
    #2BA84A 52%,
    #1E7A34 58%,
    #2BA84A 100%);
  opacity: 0.12;
  z-index: 0;
  animation: watermelonFloat 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  right: 20%;
  top: 20%;
  width: 24px;
  height: 34px;
  background: #4A2E2A;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(30deg);
  opacity: 0.1;
}

@keyframes watermelonFloat {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-56%) scale(1.03); }
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFE8A3, #FFD166);
  color: #4A2E2A;
  box-shadow: 0 4px 12px rgba(255, 190, 11, 0.25);
  letter-spacing: 1px;
}

.hero-eyebrow::before {
  content: '🍉';
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2BA84A 0%, #FF3B5C 50%, #FFBE0B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.08rem;
  opacity: 0.75;
  max-width: 540px;
  margin-bottom: 32px;
  color: #4A2E2A;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%,
    #FF3B5C 0%,
    #FF6B6B 42%,
    #FFF0EE 48%,
    #FFF0EE 50%,
    #2BA84A 52%,
    #1E7A34 58%,
    #2BA84A 100%);
  box-shadow: 0 30px 70px rgba(255, 59, 92, 0.25), inset 0 -8px 30px rgba(0, 0, 0, 0.05);
  border: 8px solid rgba(255, 255, 255, 0.7);
  animation: heroSlice 10s ease-in-out infinite;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 32%;
  left: 38%;
  width: 9px;
  height: 12px;
  background: #4A2E2A;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(25deg);
  box-shadow:
    28px 14px 0 #4A2E2A,
    -18px 38px 0 #4A2E2A,
    15px 44px 0 #4A2E2A;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 58%;
  left: 18%;
  width: 7px;
  height: 10px;
  background: #4A2E2A;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(-15deg);
  box-shadow:
    40px -16px 0 #4A2E2A,
    -12px -22px 0 #4A2E2A;
}

@keyframes heroSlice {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(3deg) scale(1.02); }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #FF3B5C, #FF6B6B);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 59, 92, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 59, 92, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #2BA84A;
  color: #2BA84A;
  box-shadow: inset 0 0 0 0 rgba(43, 168, 74, 0.1);
}

.btn-outline:hover {
  background: rgba(43, 168, 74, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(43, 168, 74, 0.18);
}

/* ========== 标签/标题 ========== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 14px;
  color: #2BA84A;
  text-transform: uppercase;
}

.section-label::before {
  content: '';
  width: 7px;
  height: 11px;
  background: #4A2E2A;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(20deg);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: #4A2E2A;
  position: relative;
  display: inline-block;
  line-height: 1.3;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 48px;
  height: 5px;
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, #FF3B5C 0, #FF3B5C 8px, #FFBE0B 8px, #FFBE0B 16px, #2BA84A 16px, #2BA84A 24px);
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 40px;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ========== 卡片网格 ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  border-radius: 24px;
  padding: 28px;
  background: #ffffff;
  border: 2px solid #F4E3DB;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card::before {
  content: '';
  display: block;
  height: 6px;
  margin: -28px -28px 20px;
  border-radius: 6px 6px 0 0;
  background: repeating-linear-gradient(90deg, #2BA84A 0, #2BA84A 14px, #1E7A34 14px, #1E7A34 28px);
}

.category-card:hover {
  transform: translateY(-8px) rotate(-0.8deg);
  box-shadow: 0 18px 40px rgba(255, 100, 110, 0.16);
  border-color: #2BA84A;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #FFE3E0, #FFD6D1);
  box-shadow: inset 0 -3px 6px rgba(255, 59, 92, 0.08);
}

.category-card:nth-child(even) .card-icon {
  background: linear-gradient(135deg, #E8F5E9, #D4EDDA);
}

.category-card:nth-child(3n) .card-icon {
  background: linear-gradient(135deg, #FFF9DB, #FFE8A3);
}

.card-link {
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  color: #2BA84A;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card-link:hover {
  gap: 12px;
  color: #FF3B5C;
}

.card-link::after {
  content: '→';
}

/* ========== 特性块 ========== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid #ffffff;
  box-shadow: 0 20px 48px rgba(255, 100, 100, 0.15);
  position: relative;
  background: linear-gradient(135deg, #FFE8A3, #FFD166);
  min-height: 260px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 260px;
}

.feature-text {
  font-size: 1.02rem;
}

.feature-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #4A2E2A;
}

.feature-text p {
  opacity: 0.75;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #2BA84A;
  color: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(43, 168, 74, 0.3);
}

/* ========== 数据条 ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: 20px;
  border: 2px solid #F4E3DB;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(90deg, #FF3B5C 0, #FF3B5C 10px, #FFBE0B 10px, #FFBE0B 20px);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(255, 100, 100, 0.12);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF3B5C, #FFBE0B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.88rem;
  opacity: 0.65;
  margin-top: 6px;
  font-weight: 500;
}

/* ========== 内容墙 ========== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #F0E3DA;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(255, 100, 100, 0.14);
  border-color: #FFBE0B;
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  position: relative;
}

.content-wall-body {
  padding: 20px;
  position: relative;
}

.content-wall-body::before {
  content: '🍉';
  position: absolute;
  top: -14px;
  right: 16px;
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #4A2E2A;
}

.content-wall-body p {
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.6;
}

.content-wall-body .meta {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #FF3B5C;
  background: #FFE3E0;
  padding: 3px 12px;
  border-radius: 20px;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid #F4E0DA;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #FFBE0B;
}

.faq-item.open {
  border-color: #2BA84A;
  box-shadow: 0 12px 28px rgba(43, 168, 74, 0.1);
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF7E8;
  transition: background 0.2s;
  color: #4A2E2A;
}

.faq-item.open .faq-question {
  background: #FFBE0B;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: #FF3B5C;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: '+';
  transform: rotate(45deg);
  color: #4A2E2A;
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  display: none;
  opacity: 0.75;
  line-height: 1.8;
  background: #ffffff;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  padding-top: 14px;
}

/* ========== CTA横幅 ========== */
.cta-banner {
  padding: 64px 24px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #FF3B5C, #FF6B6B 35%, #FFBE0B);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(255, 59, 92, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.12) 0deg 10deg, transparent 10deg 20deg);
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #FF3B5C;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cta-banner .btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

/* ========== 页脚 ========== */
.site-footer {
  padding: 56px 0 28px;
  background: #FFBE0B;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.25) 0%, transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(255, 59, 92, 0.1) 0%, transparent 40%);
  color: #4A2E2A;
  position: relative;
}

.site-footer .container {
  max-width: 1200px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand .logo {
  color: #4A2E2A;
  margin-bottom: 14px;
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #4A2E2A;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  color: #4A2E2A;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.85;
  transition: all 0.2s;
}

.footer-col a:hover {
  opacity: 1;
  color: #FF3B5C;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(74, 46, 42, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-bottom a {
  color: #4A2E2A;
  text-decoration: underline;
  font-weight: 600;
}

/* ========== 工具类 ========== */
.text-accent {
  color: #FF3B5C;
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.seo-description {
  max-width: 620px;
  margin: 0 auto 48px;
  opacity: 0.75;
  line-height: 1.8;
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ========== 装饰分隔 ========== */
.section-divider {
  height: 12px;
  background: repeating-linear-gradient(135deg,
    #FF3B5C 0, #FF3B5C 12px,
    #FFBE0B 12px, #FFBE0B 24px,
    #2BA84A 24px, #2BA84A 36px);
  border-radius: 12px;
  margin: 40px 0;
  opacity: 0.4;
}

/* ========== 响应式 ========== */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 90px;
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero::before {
    width: 300px;
    height: 300px;
    right: -20%;
  }

  .hero-image {
    width: 240px;
    height: 240px;
  }

  .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;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #FFF8F2;
    padding: 24px;
    gap: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #FFBE0B;
    border-radius: 0 0 24px 24px;
    align-items: flex-start;
  }

  .main-nav.open a {
    font-size: 1rem;
  }

  .main-nav.open .nav-cta {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

@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;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .cta-banner {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }
}