/* ========== 多汁马卡龙 · 贴纸风格设计系统 ========== */
:root {
  --cream: #FFFBF0;
  --mint: #E6F7EF;
  --coral: #FF6A5A;
  --coral-light: #FFB3A0;
  --coral-grad: linear-gradient(135deg, #FF6A5A 0%, #FF8A70 100%);
  --melon: #2ECB8E;
  --melon-light: #A8E8C8;
  --lemon: #FFD84D;
  --lemon-light: #FFE9A8;
  --ink: #273329;
  --ink-soft: #6C7A6C;
  --card-bg: #FFFFFF;
  --line: #F0E6D6;
  --shadow-coral: 6px 6px 0 rgba(255, 106, 90, 0.12);
  --shadow-melon: 6px 6px 0 rgba(46, 203, 142, 0.14);
  --shadow-lemon: 6px 6px 0 rgba(255, 216, 77, 0.2);
}

/* ========== 基础重置 ========== */
*, *::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: var(--cream);
  background-image:
    radial-gradient(circle at 15% 30%, rgba(255, 106, 90, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(46, 203, 142, 0.05) 0%, transparent 30%);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

::selection {
  background: var(--lemon);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--coral), var(--melon));
  border-radius: 8px;
}

/* ========== 核心布局 ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, #F7FCF9 0%, #F0FAF5 100%);
}

/* ========== 导航 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 251, 240, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--line);
}

.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: var(--ink);
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--coral-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 106, 90, 0.35);
}

.logo-icon:empty::before {
  content: '🍉';
  font-size: 1.2rem;
}

.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: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--coral);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--coral);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.nav-cta::after {
  display: none;
}

.nav-cta {
  background: var(--coral-grad);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  box-shadow: 0 6px 16px rgba(255, 106, 90, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 106, 90, 0.35);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 12px;
  background: rgba(255, 106, 90, 0.06);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 4px;
  background: var(--ink);
}

/* ========== Hero ========== */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0 60px;
  background: linear-gradient(170deg, #FFF7E8 0%, #FFFBF0 45%, #F0FAF2 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle,
    var(--coral) 0%,
    #FF8A70 58%,
    #FFB3A0 58%,
    #FFB3A0 68%,
    var(--cream) 68%,
    var(--cream) 76%,
    var(--melon) 76%,
    #1EAE78 100%);
  box-shadow: 0 20px 60px rgba(46, 203, 142, 0.18);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  right: calc(3% + 172px);
  top: calc(50% - 56px);
  transform: translate(-50%, -50%);
  width: 10px;
  height: 14px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--ink);
  box-shadow:
    24px 28px 0 -3px var(--ink),
    -28px 24px 0 -3px var(--ink),
    30px -36px 0 -4px var(--ink),
    -30px -30px 0 -3px var(--ink),
    0 -48px 0 -4px var(--ink),
    0 46px 0 -4px var(--ink);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--lemon);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(255, 106, 90, 0.25);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.hero h1 .text-accent {
  color: var(--coral);
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 14px 14px 0 rgba(46, 203, 142, 0.14);
  background: linear-gradient(135deg, #E0F5EA, #FFE3E0);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--coral-grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 106, 90, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 106, 90, 0.38);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--melon);
  color: var(--ink);
}

.btn-outline:hover {
  background: rgba(46, 203, 142, 0.08);
  border-color: #1EAE78;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(46, 203, 142, 0.16);
}

/* ========== 区块标题 ========== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  background: rgba(46, 203, 142, 0.1);
  color: var(--melon);
  box-shadow: 3px 3px 0 rgba(46, 203, 142, 0.16);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 5px;
  border-radius: 8px;
  background: var(--coral-grad);
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-desc {
  max-width: 620px;
  opacity: 0.75;
  margin-bottom: 40px;
  font-size: 1rem;
  color: var(--ink-soft);
}

/* ========== 卡片网格 ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  background: var(--card-bg);
  border-radius: 28px;
  padding: 30px 28px;
  border: 2px solid rgba(255, 106, 90, 0.08);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--coral-grad);
  border-radius: 4px 4px 0 0;
}

.category-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--melon), #64E3B0);
}

.category-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--lemon), #FFE580);
}

.category-card:nth-child(4)::before {
  background: linear-gradient(90deg, #5B8CFF, #9AB5FF);
}

.category-card:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: 8px 8px 0 rgba(255, 106, 90, 0.1);
  border-color: rgba(255, 106, 90, 0.18);
}

.category-card:nth-child(2):hover {
  box-shadow: 8px 8px 0 rgba(46, 203, 142, 0.14);
}

.category-card:nth-child(3):hover {
  box-shadow: 8px 8px 0 rgba(255, 216, 77, 0.18);
}

.category-card:nth-child(4):hover {
  box-shadow: 8px 8px 0 rgba(91, 140, 255, 0.14);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FFE3E0, #FFF0EE);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.04);
}

.card-icon:empty::before {
  content: '🍉';
  font-size: 1.5rem;
}

.category-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #E0F5EA, #F0FAF5);
}

.category-card:nth-child(2) .card-icon:empty::before {
  content: '🍈';
}

.category-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, #FFF3CD, #FFFBED);
}

.category-card:nth-child(3) .card-icon:empty::before {
  content: '🍋';
}

.category-card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, #E8F0FE, #F4F7FF);
}

.category-card:nth-child(4) .card-icon:empty::before {
  content: '🍑';
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.6;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}

.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;
  background: linear-gradient(135deg, #E6F7EF, #FFE3E0);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 12px 12px 0 rgba(46, 203, 142, 0.14);
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.feature-text .section-label {
  background: rgba(255, 106, 90, 0.1);
  color: var(--coral);
  box-shadow: 3px 3px 0 rgba(255, 106, 90, 0.15);
}

.feature-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-text p {
  opacity: 0.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(46, 203, 142, 0.14);
  color: var(--melon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ========== 数据条 ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: 28px;
  border: none;
  background: var(--card-bg);
  box-shadow: var(--shadow-coral);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-item:nth-child(2) {
  box-shadow: var(--shadow-melon);
}

.stat-item:nth-child(3) {
  box-shadow: var(--shadow-lemon);
}

.stat-item:nth-child(4) {
  box-shadow: 6px 6px 0 rgba(91, 140, 255, 0.12);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--coral);
  letter-spacing: -0.04em;
}

.stat-item:nth-child(2) .stat-number {
  color: var(--melon);
}

.stat-item:nth-child(3) .stat-number {
  color: #F0A500;
}

.stat-item:nth-child(4) .stat-number {
  color: #5B8CFF;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ========== 内容墙 ========== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 24px;
  overflow: hidden;
  background: var(--card-bg);
  border: 2px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.content-wall-item:nth-child(3n+1) {
  border-top: 4px solid var(--coral);
}

.content-wall-item:nth-child(3n+2) {
  border-top: 4px solid var(--melon);
}

.content-wall-item:nth-child(3n+3) {
  border-top: 4px solid var(--lemon);
}

.content-wall-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #FFE3E0, #E0F5EA);
}

.content-wall-body {
  padding: 22px 24px 24px;
}

.content-wall-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.content-wall-body p {
  font-size: 0.85rem;
  opacity: 0.7;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 12px;
}

.content-wall-body .meta {
  font-size: 0.75rem;
  opacity: 0.5;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 2px solid var(--line);
  border-radius: 20px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 106, 90, 0.25);
}

.faq-item.open {
  border-color: var(--coral);
  box-shadow: 4px 4px 0 rgba(255, 106, 90, 0.1);
}

.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--coral);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 18px;
  display: none;
  opacity: 0.75;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ========== CTA 横幅 ========== */
.cta-banner {
  padding: 64px 40px;
  text-align: center;
  border-radius: 40px;
  background: linear-gradient(135deg, #FF6A5A 0%, #FF8A70 50%, #FFAA80 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(255, 106, 90, 0.32);
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  right: -50px;
  top: -70px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  left: 8%;
  bottom: -50px;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.03em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--coral);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

/* ========== 页脚 ========== */
.site-footer {
  padding: 64px 0 28px;
  background: var(--cream);
  border-top: 2px solid var(--line);
}

.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.9rem;
  opacity: 0.7;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

.footer-col a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover {
  color: var(--coral);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 2px solid var(--line);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ========== 工具类 ========== */
.text-accent {
  color: var(--coral);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 680px;
  margin: 0 auto 48px;
  opacity: 0.75;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr 0.8fr;
    gap: 36px;
  }

  .hero::before {
    width: 300px;
    height: 300px;
  }

  .hero::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    text-align: center;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero::before {
    width: 240px;
    height: 240px;
    right: -40px;
    top: 26%;
    opacity: 0.7;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .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: var(--cream);
    padding: 24px;
    border-bottom: 2px solid var(--line);
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    align-items: flex-start;
  }

  .main-nav.open a {
    font-size: 1rem;
    padding: 8px 0;
  }

  .main-nav.open a::after {
    display: none;
  }

  .nav-cta {
    align-self: flex-start;
    margin-top: 6px;
  }

  .cta-banner {
    padding: 48px 24px;
    border-radius: 28px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stats-bar {
    gap: 16px;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-banner h2 {
    font-size: 1.7rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}