/* ================================================
   AFCAN 弹幕品牌设计系统
   "弹幕胶囊" · 暖白底 · 橙蓝双原色
   ================================================ */

/* ---------- 基础重置 ---------- */
*, *::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: #FFF8F2;
  background-image: radial-gradient(rgba(255, 78, 0, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  color: #1A1A2E;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::selection {
  background: #FF4E00;
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  color: #1A1A2E;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ---------- 核心布局 ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #FFF3EC;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section::after {
  content: '✦';
  position: absolute;
  right: 24px;
  bottom: 12px;
  font-size: 120px;
  color: rgba(255, 78, 0, 0.03);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

/* ---------- 导航 ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 78, 0, 0.1);
  box-shadow: 0 1px 24px rgba(255, 78, 0, 0.04);
}

.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.3rem;
  text-decoration: none;
  color: #1A1A2E;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF4E00, #FF8A00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(255, 78, 0, 0.3);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
}

.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: #1A1A2E;
  position: relative;
  transition: color 0.2s ease;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #FF4E00, #FFD166);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover {
  color: #FF4E00;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, #FF4E00, #FF8A00);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(255, 78, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 78, 0, 0.4);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #1A1A2E;
  cursor: pointer;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: rgba(255, 78, 0, 0.06);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 68px;
}

.hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 55%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.2) 0%, rgba(255, 78, 0, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  background: rgba(255, 78, 0, 0.08);
  color: #FF4E00;
  border: 1px solid rgba(255, 78, 0, 0.15);
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #00B4D8;
  border-radius: 50%;
  margin-left: 12px;
  animation: pulse 2s ease-in-out infinite;
  vertical-align: middle;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.65;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  position: relative;
  flex: 1;
  max-width: 480px;
  min-height: 400px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(255, 78, 0, 0.12);
  background: linear-gradient(135deg, #FFE4E0, #E0F7FA);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* 弹幕动画覆盖层 */
.hero-image::before {
  content: '弹幕不停 ♥ 热爱不止';
  position: absolute;
  top: 28px;
  left: 100%;
  white-space: nowrap;
  background: rgba(255, 78, 0, 0.92);
  color: #fff;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  animation: danmakuLeft 7s linear infinite;
  box-shadow: 0 4px 16px rgba(255, 78, 0, 0.3);
}

.hero-image::after {
  content: '今晚8点直播间见！';
  position: absolute;
  bottom: 60px;
  left: 100%;
  white-space: nowrap;
  background: rgba(0, 180, 216, 0.9);
  color: #fff;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  z-index: 2;
  animation: danmakuLeft 10s 2.5s linear infinite;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.25);
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #FF4E00, #FF8A00);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 78, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 78, 0, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #FF4E00;
  color: #FF4E00;
}

.btn-outline:hover {
  background: rgba(255, 78, 0, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 78, 0, 0.08);
}

/* ---------- 标签/标题 ---------- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
  background: rgba(0, 180, 216, 0.1);
  color: #00B4D8;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
}

.section-title::before {
  content: '#';
  color: #FF4E00;
  margin-right: 8px;
}

.section-desc {
  max-width: 600px;
  opacity: 0.6;
  margin-bottom: 40px;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ---------- 卡片网格 ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(26, 26, 46, 0.04);
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.04);
  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;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF4E00, #FFD166, #00B4D8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.category-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 16px 40px rgba(255, 78, 0, 0.1);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 78, 0, 0.1), rgba(255, 209, 102, 0.2));
  transition: transform 0.3s ease;
}

.category-card:hover .card-icon {
  transform: scale(1.05);
}

.category-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(0, 180, 216, 0.16));
}

.category-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.2), rgba(255, 78, 0, 0.1));
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #FF4E00;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  transition: gap 0.3s ease;
}

.category-card:hover .card-link {
  gap: 10px;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.category-card:hover .card-link::after {
  transform: translateX(2px);
}

/* ---------- 特性块 ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(26, 26, 46, 0.08);
  background: linear-gradient(135deg, #FFE4E0, #E0F7FA);
  min-height: 320px;
  position: relative;
}

.feature-image::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255, 78, 0, 0.85);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(255, 78, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(255, 78, 0, 0.45);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-image:hover img {
  transform: scale(1.03);
}

.feature-text .section-title {
  margin-bottom: 20px;
}

.feature-text .section-desc {
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 16px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: rgba(26, 26, 46, 0.9);
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  color: #FF4E00;
  background: rgba(255, 78, 0, 0.08);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- 数据条 ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 36px 24px;
  border-radius: 20px;
  border: 1px solid rgba(26, 26, 46, 0.04);
  background: #fff;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 78, 0, 0.08);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #FF4E00, #FFD166);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF4E00, #FF8A00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ---------- 内容墙 ---------- */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  background: #fff;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wall-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 180, 216, 0.12);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.content-wall-item:hover img {
  transform: scale(1.05);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.content-wall-body p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 78, 0, 0.3);
  box-shadow: 0 4px 16px rgba(255, 78, 0, 0.05);
}

.faq-item.open {
  border-color: rgba(255, 78, 0, 0.2);
  box-shadow: 0 8px 24px rgba(255, 78, 0, 0.06);
}

.faq-item .faq-question {
  padding: 18px 24px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1A1A2E;
  font-size: 1rem;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #FF4E00;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.7;
  line-height: 1.65;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  padding-top: 4px;
}

/* ---------- CTA横幅 ---------- */
.cta-banner {
  padding: 64px 48px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(135deg, #FF4E00, #FF8A00, #FFB800);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(255, 78, 0, 0.25);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #FF4E00;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ---------- 页脚 ---------- */
.site-footer {
  padding: 64px 0 32px;
  background: #FFF0E8;
  border-top: 1px solid rgba(255, 78, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 10%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 78, 0, 0.04), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.55;
  max-width: 240px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #1A1A2E;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: rgba(26, 26, 46, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: #FF4E00;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(26, 26, 46, 0.06);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(26, 26, 46, 0.4);
}

/* ---------- 工具类 ---------- */
.text-accent {
  color: #FF4E00;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.65;
  line-height: 1.7;
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ---------- 动画 ---------- */
@keyframes danmakuLeft {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

/* ---------- 响应式 768px ---------- */
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
  }

  .hero .container {
    flex-direction: column;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
    min-height: 280px;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-image {
    min-height: 240px;
  }

  .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, 248, 242, 0.98);
    padding: 24px;
    gap: 18px;
    border-bottom: 2px solid rgba(255, 78, 0, 0.1);
    box-shadow: 0 16px 32px rgba(26, 26, 46, 0.08);
    backdrop-filter: blur(16px);
  }

  .main-nav.open a {
    font-size: 1rem;
    padding: 8px 0;
  }

  .main-nav.open .nav-cta {
    text-align: center;
    font-size: 1rem;
  }

  .cta-banner {
    padding: 48px 28px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ---------- 响应式 480px ---------- */
@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;
    align-items: center;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section {
    padding: 48px 0;
  }

  .hero-image {
    min-height: 220px;
    border-radius: 20px;
  }

  .hero-image::before {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-image::after {
    font-size: 11px;
    padding: 5px 12px;
  }

  .feature-block {
    gap: 28px;
  }

  .feature-image {
    min-height: 180px;
  }

  .cta-banner {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }

  .stat-item {
    padding: 28px 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}