/* ========================================
   吃瓜大赛 · 夏日多汁设计系统
   风格：水果几何印刷风
   ======================================== */

*, *::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;
  overflow-x: hidden;
  background-color: #FBF7F0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(245, 197, 66, 0.12), transparent 30%),
    radial-gradient(circle at 8% 75%, rgba(59, 125, 79, 0.08), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(242, 84, 61, 0.03), transparent 55%);
  background-attachment: fixed;
  color: #2C2420;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #F5C542;
  color: #2C2420;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #FBF7F0;
}
::-webkit-scrollbar-thumb {
  background: #3B7D4F;
  border-radius: 8px;
  border: 2px solid #FBF7F0;
}

/* ========== 核心布局 ========== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: rgba(234, 244, 227, 0.55);
}

/* ========== 导航 ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(44, 36, 32, 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #F2543D 0px,
    #F2543D 22px,
    #F5C542 22px,
    #F5C542 44px,
    #3B7D4F 44px,
    #3B7D4F 66px
  );
}

.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: 12px;
  font-weight: 900;
  font-size: 1.3rem;
  text-decoration: none;
  color: #2C2420;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at center, #F2543D 0%, #F2543D 52%, #fff 52%, #fff 76%, #3B7D4F 76%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(242, 84, 61, 0.25);
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 26%;
  left: 34%;
  width: 4px;
  height: 6px;
  background: #2C2420;
  border-radius: 50%;
  transform: rotate(25deg);
  box-shadow:
    9px 9px 0 -1px #2C2420,
    -6px 13px 0 -1px #2C2420,
    4px 20px 0 -1px #2C2420;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #433D38;
  padding: 6px 2px;
  position: relative;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #F2543D;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover {
  color: #F2543D;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 50px;
  color: #fff !important;
  font-weight: 700;
  background: linear-gradient(120deg, #F2543D, #E84A2A);
  box-shadow: 0 6px 18px rgba(242, 84, 61, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 84, 61, 0.4);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(44, 36, 32, 0.15);
  border-radius: 14px;
  background: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #2C2420;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.menu-toggle:hover {
  border-color: #F2543D;
}

/* ========== 首页 Hero ========== */

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -70px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(245, 197, 66, 0.28), rgba(245, 197, 66, 0.06) 72%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 3px solid rgba(59, 125, 79, 0.18);
  background: transparent;
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
  background: #EAF4E3;
  color: #3B7D4F;
  margin-bottom: 28px;
  border: 1px solid rgba(59, 125, 79, 0.18);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #2C2420;
}

.hero h1 .text-accent {
  position: relative;
  display: inline-block;
  color: #F2543D;
}

.hero h1 .text-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.04em;
  width: 100%;
  height: 0.12em;
  background: #F5C542;
  border-radius: 50%;
  transform: rotate(-1.2deg);
  z-index: -1;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #433D38;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  width: min(420px, 100%);
  justify-self: center;
  background:
    radial-gradient(circle at center, #F2543D 0%, #F2543D 58%, #FBF7F0 58%, #FBF7F0 72%, #3B7D4F 72%, #3B7D4F 100%);
  box-shadow:
    0 30px 60px rgba(242, 84, 61, 0.25),
    inset 0 0 0 6px rgba(255, 255, 255, 0.25);
  animation: float 6s ease-in-out infinite;
}

.hero-image:has(img) {
  background: #EAF4E3;
  animation: none;
  border-radius: 32px;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 31%;
  left: 26%;
  width: 5px;
  height: 8px;
  background: rgba(44, 36, 32, 0.85);
  border-radius: 50%;
  transform: rotate(25deg);
  box-shadow:
    32px 4px 0 -1px rgba(44, 36, 32, 0.85),
    -28px 16px 0 -1px rgba(44, 36, 32, 0.85),
    8px 38px 0 -1px rgba(44, 36, 32, 0.85),
    44px 40px 0 -1px rgba(44, 36, 32, 0.85),
    -20px -22px 0 -1px rgba(44, 36, 32, 0.85);
  z-index: 2;
}

.hero-image:has(img)::before {
  display: none;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  height: 6px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  z-index: 2;
}

.hero-image:has(img)::after {
  display: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== 按钮 ========== */

.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;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, #F2543D, #E84A2A);
  box-shadow: 0 10px 24px rgba(242, 84, 61, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(242, 84, 61, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #3B7D4F;
  color: #3B7D4F;
}

.btn-outline:hover {
  background: #3B7D4F;
  color: #fff;
  transform: translateY(-2px);
}

/* ========== 标签 / 标题 ========== */

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #F2543D;
  margin-bottom: 18px;
  padding-left: 44px;
  position: relative;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 3px;
  background: currentColor;
  border-radius: 3px;
  transform: translateY(-50%);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #2C2420;
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-title .text-accent {
  position: relative;
  color: #F2543D;
}

.section-title .text-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.02em;
  width: 100%;
  height: 0.1em;
  background: #F5C542;
  border-radius: 50%;
  z-index: -1;
}

/* ========== 卡片网格 ========== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 24px;
  padding: 36px 28px;
  border: none;
  background: #fff;
  box-shadow: 0 2px 12px rgba(44, 36, 32, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(242, 84, 61, 0.07);
  transition: transform 0.4s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F2543D, #F5C542, #3B7D4F);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 16px 32px rgba(44, 36, 32, 0.1);
}

.category-card:hover::before {
  transform: scale(2.4);
  background: rgba(242, 84, 61, 0.05);
}

.category-card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  background: #EAF4E3;
  position: relative;
}

.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: #F2543D;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.card-link:hover {
  gap: 10px;
}

/* ========== 特性块 ========== */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: #EAF4E3;
  box-shadow:
    -16px -16px 0 0 #F5C542,
    16px 16px 0 0 #EAF4E3;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-text {
  font-size: 1.05rem;
}

.feature-text p {
  opacity: 0.75;
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 28px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 0.98rem;
  color: #433D38;
}

.feature-list li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle, #F2543D 0%, #F2543D 42%, #fff 42%, #fff 62%, #3B7D4F 62%, #3B7D4F 100%);
}

/* ========== 数据条 ========== */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-item {
  padding: 36px 24px;
  border-radius: 24px;
  background: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(44, 36, 32, 0.04);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(44, 36, 32, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #F2543D;
  line-height: 1;
}

.stat-number::after {
  content: '';
  display: block;
  width: 32px;
  height: 4px;
  background: #EAF4E3;
  margin: 18px auto 14px;
  border-radius: 4px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 0;
  font-weight: 500;
  color: #2C2420;
}

/* ========== 内容墙 ========== */

.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 24px;
  overflow: hidden;
  border: none;
  background: #fff;
  box-shadow: 0 2px 12px rgba(44, 36, 32, 0.04);
  transition: all 0.35s ease;
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(44, 36, 32, 0.08);
}

.content-wall-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-wall-item:hover img {
  transform: scale(1.05);
}

.content-wall-body {
  padding: 24px 24px 28px;
}

.content-wall-body .meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3B7D4F;
  margin-bottom: 8px;
  display: block;
}

.content-wall-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2C2420;
  line-height: 1.5;
}

.content-wall-body p {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.7;
}

/* ========== FAQ ========== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(44, 36, 32, 0.08);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(44, 36, 32, 0.06);
}

.faq-item.open {
  border-color: rgba(242, 84, 61, 0.35);
  box-shadow: 0 8px 28px rgba(242, 84, 61, 0.12);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #2C2420;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: #F2543D;
  transition: transform 0.35s ease;
  line-height: 1;
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.75;
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

/* ========== CTA 横幅 ========== */

.cta-banner {
  padding: 88px 40px;
  text-align: center;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
    linear-gradient(120deg, #F2543D, #FF7A45 50%, #E84A2A);
  box-shadow: 0 24px 60px rgba(242, 84, 61, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 18px solid rgba(255, 255, 255, 0.12);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1), transparent 70%);
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-banner p {
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: #fff;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #F2543D;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

/* ========== 页脚 ========== */

.site-footer {
  padding: 72px 0 28px;
  background: rgba(234, 244, 227, 0.85);
  border-top: 3px solid rgba(59, 125, 79, 0.2);
  position: relative;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 900;
  color: #2C2420;
  margin-bottom: 14px;
}

.footer-brand .logo {
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.6;
  max-width: 240px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3B7D4F;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  color: #433D38;
  text-decoration: none;
  opacity: 0.7;
  font-size: 0.9rem;
  transition: opacity 0.2s, padding-left 0.25s ease;
}

.footer-col a:hover {
  opacity: 1;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(59, 125, 79, 0.18);
  margin-top: 56px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(44, 36, 32, 0.55);
}

/* ========== 工具类 ========== */

.text-accent {
  color: #F2543D;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 56px;
  opacity: 0.7;
  text-align: center;
  line-height: 1.8;
  font-size: 1.05rem;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ========== 动画 ========== */

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ========== 响应式 ========== */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
    order: 2;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: 1;
    max-width: 320px;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-banner {
    padding: 72px 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .feature-block {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .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: rgba(251, 247, 240, 0.98);
    backdrop-filter: blur(14px);
    padding: 28px 32px;
    gap: 18px;
    box-shadow: 0 16px 32px rgba(44, 36, 32, 0.1);
    border-bottom: 3px solid #F2543D;
    border-radius: 0 0 24px 24px;
    list-style: none;
  }

  .main-nav.open li {
    width: 100%;
  }

  .main-nav.open a {
    display: block;
    font-size: 1rem;
    padding: 8px 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .cta-banner {
    padding: 64px 24px;
    border-radius: 24px;
  }
}

@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 {
    justify-content: center;
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .cta-banner {
    padding: 56px 20px;
  }
}