/* ============================================
   每日大赛 · 竞逐能量拼贴
   视觉身份：运动能量 × 彩色纸片 × 杂志排版
   配色：珊瑚橙 #FF6B4A / 明黄 #FFD93D / 蓝绿 #57C7B6
   ============================================ */

:root {
  --primary: #FF6B4A;
  --primary-dark: #E85D3D;
  --yellow: #FFD93D;
  --teal: #57C7B6;
  --pink: #FF4D6D;
  --bg-main: #FFF9F4;
  --bg-soft: #FFF1E8;
  --text-dark: #2B2B2B;
  --text-soft: rgba(43, 43, 43, 0.65);
  --border-color: rgba(43, 43, 43, 0.08);
  --shadow-primary: 6px 6px 0 rgba(255, 107, 74, 0.28);
  --shadow-yellow: 6px 6px 0 rgba(255, 217, 61, 0.9);
  --shadow-teal: 8px 8px 0 rgba(87, 199, 182, 0.45);
}

/* ---------- 基础重置 ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
  overflow-x: hidden;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ---------- 核心布局 ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-soft);
}

/* ---------- 导航 ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: none;
  box-shadow: 0 4px 0 var(--yellow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--yellow);
  color: var(--text-dark);
  transform: rotate(-6deg);
  box-shadow: 3px 3px 0 rgba(255, 107, 74, 0.4);
  border: 1.5px solid var(--text-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 700;
  background: var(--primary);
  box-shadow: 3px 3px 0 var(--yellow);
  transition: all 0.2s;
  border: 1.5px solid var(--text-dark);
}

.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--yellow);
  color: #fff !important;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--text-dark);
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 14px;
  color: var(--text-dark);
  line-height: 1.2;
}

.menu-toggle:hover {
  background: var(--yellow);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 217, 61, 0.35) 0%, transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(255, 107, 74, 0.15) 0%, transparent 32%),
    var(--bg-main);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 107, 74, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 74, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  transform: skewX(-8deg) translateX(10%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 300px;
  padding: 60px 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 0;
  background: var(--yellow);
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  transform: rotate(-2deg);
  border: 1.5px solid var(--text-dark);
  box-shadow: 3px 3px 0 var(--primary);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight {
  background: linear-gradient(120deg, var(--yellow) 0%, var(--yellow) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.42em;
  background-position: 0 88%;
  padding: 0 4px;
}

.hero p {
  font-size: 1.08rem;
  opacity: 0.65;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  max-width: 480px;
  min-width: 280px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transform: rotate(2deg);
  box-shadow: 12px 12px 0 var(--yellow);
  border: 2.5px solid var(--text-dark);
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes heroFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-14px); }
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1.5px solid var(--text-dark);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.3px;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 4px 4px 0 var(--yellow);
}

.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--yellow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: 3px 3px 0 rgba(255, 107, 74, 0.2);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 6px 8px 0 rgba(255, 107, 74, 0.28);
}

/* ---------- 标签 / 标题 ---------- */
.section-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 5px 14px;
  background: var(--yellow);
  color: var(--text-dark);
  transform: rotate(-1deg);
  border: 1.5px solid var(--text-dark);
  box-shadow: 3px 3px 0 rgba(255, 107, 74, 0.4);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 16px;
}

.section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 6px;
  background: var(--yellow);
  border-radius: 3px;
  border: 1px solid var(--text-dark);
}

.section-title::after {
  content: ' ///';
  color: var(--primary);
  font-size: 0.75em;
  font-weight: 900;
}

.section-desc {
  max-width: 600px;
  opacity: 0.65;
  margin-bottom: 48px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ---------- 卡片网格 ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.category-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1.5px solid var(--text-dark);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-primary);
  display: flex;
  flex-direction: column;
}

.category-card:nth-child(2n) {
  transform: rotate(0.8deg);
  box-shadow: 6px 6px 0 rgba(255, 217, 61, 0.85);
}

.category-card:nth-child(3n) {
  transform: rotate(-0.7deg);
  box-shadow: 6px 6px 0 rgba(87, 199, 182, 0.5);
}

.category-card:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.01);
  box-shadow: 10px 10px 0 var(--yellow);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--text-dark);
  transform: rotate(-6deg);
  flex-shrink: 0;
}

.category-card:nth-child(2n) .card-icon {
  background: var(--yellow);
  transform: rotate(5deg);
}

.category-card:nth-child(3n) .card-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(-3deg);
}

.category-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.category-card p {
  font-size: 0.9rem;
  opacity: 0.65;
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.card-link {
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  transition: gap 0.2s;
}

.card-link::after {
  content: '→';
  transition: transform 0.2s;
  font-size: 1.1rem;
}

.card-link:hover::after {
  transform: translateX(5px);
}

/* ---------- 特性块 ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--text-dark);
  box-shadow: var(--shadow-teal);
  transform: rotate(-1.5deg);
}

.feature-image::before {
  content: '';
  position: absolute;
  top: 14px;
  left: -12px;
  width: 26px;
  height: 26px;
  background: var(--yellow);
  border: 2px solid var(--text-dark);
  border-radius: 50%;
  z-index: 2;
}

.feature-image::after {
  content: '✦';
  position: absolute;
  bottom: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 2;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.feature-image:hover img {
  transform: scale(1.03);
}

.feature-text .section-title {
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  border-bottom: 1.5px dashed rgba(43, 43, 43, 0.15);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✦';
  font-weight: 900;
  color: var(--primary);
  background: var(--yellow);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  border: 1.5px solid var(--text-dark);
  flex-shrink: 0;
}

/* ---------- 数据条 ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 34px 20px;
  border-radius: 16px;
  border: 2px solid var(--text-dark);
  background: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:nth-child(1) { box-shadow: 6px 6px 0 var(--primary); }
.stat-item:nth-child(2) { box-shadow: 6px 6px 0 var(--yellow); transform: rotate(1deg); }
.stat-item:nth-child(3) { box-shadow: 6px 6px 0 var(--teal); transform: rotate(-1deg); }
.stat-item:nth-child(4) { box-shadow: 6px 6px 0 var(--pink); }

.stat-item:hover {
  transform: translateY(-6px) rotate(0deg);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.5px;
  color: var(--primary);
}

.stat-item:nth-child(2) .stat-number { color: #D49A00; }
.stat-item:nth-child(3) .stat-number { color: #2FA896; }
.stat-item:nth-child(4) .stat-number { color: var(--pink); }

.stat-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---------- 内容墙 ---------- */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.content-wall-item {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid var(--text-dark);
  transition: all 0.3s ease;
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 8px 8px 0 rgba(255, 107, 74, 0.3);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1.5px solid var(--text-dark);
  display: block;
}

.content-wall-body {
  padding: 22px;
  position: relative;
  background: #fff;
}

.content-wall-body .date {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--yellow);
  padding: 2px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.4;
}

.content-wall-body p {
  font-size: 0.88rem;
  opacity: 0.6;
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--text-dark);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 6px 6px 0 rgba(255, 107, 74, 0.22);
  transform: translateX(5px);
}

.faq-item.open {
  box-shadow: 6px 6px 0 var(--yellow);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--primary);
  transition: all 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: '−';
  color: var(--text-dark);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  opacity: 0.7;
  line-height: 1.8;
  border-top: 1.5px dashed rgba(43, 43, 43, 0.15);
}

.faq-item.open .faq-answer {
  display: block;
  padding-top: 16px;
}

/* ---------- CTA 横幅 ---------- */
.cta-banner {
  padding: 64px 40px;
  text-align: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(120deg, var(--primary) 0%, #FF9F6A 100%);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--text-dark);
  box-shadow: 10px 10px 0 var(--yellow);
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.cta-banner::before {
  width: 140px;
  height: 140px;
  top: -40px;
  left: -30px;
}

.cta-banner::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  right: -50px;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  content: ' ⚡';
  color: var(--yellow);
  display: inline-block;
}

.cta-banner p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 4px 4px 0 rgba(43, 43, 43, 0.25);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: var(--yellow);
  color: var(--text-dark);
  box-shadow: 1px 1px 0 rgba(43, 43, 43, 0.25);
}

/* ---------- 页脚 ---------- */
.site-footer {
  padding: 72px 0 30px;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--primary), var(--yellow), var(--teal), var(--pink));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  border: 1px solid var(--text-dark);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--text-dark);
  opacity: 0.65;
  font-size: 0.88rem;
  transition: all 0.2s;
  display: inline-block;
}

.footer-col ul a:hover {
  opacity: 1;
  color: var(--primary);
  padding-left: 6px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 2px solid rgba(43, 43, 43, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

/* ---------- 工具类 ---------- */
.text-accent {
  color: var(--primary);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.65;
  line-height: 1.8;
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ---------- 全局装饰 ---------- */
body::after {
  content: '';
  position: fixed;
  bottom: -15%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero .container {
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 80px 0 0;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 460px;
    width: 100%;
  }

  .hero::before {
    width: 100%;
    transform: skewX(-4deg);
  }

  .feature-block {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .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: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 24px;
    gap: 18px;
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--yellow);
  }

  .main-nav.open a {
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(43, 43, 43, 0.1);
    width: 100%;
  }

  .main-nav.open .nav-cta {
    text-align: center;
    width: 100%;
    display: block;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .stat-item {
    padding: 26px 16px;
  }

  .cta-banner {
    padding: 48px 24px;
  }

  .nav-cta {
    display: none;
  }

  .feature-list li {
    font-size: 0.95rem;
  }
}

@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: 2.3rem;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
  }

  .section {
    padding: 56px 0;
  }

  .stats-bar {
    gap: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-banner {
    padding: 40px 18px;
    border-radius: 16px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .footer-col {
    text-align: left;
  }

  .container {
    padding: 0 18px;
  }
}