/* =============================================
   每日大赛 Yandex官网 · 设计系统
   「竞赛能量场」— 纸感拼贴 × 赛事视觉
   主色：珊瑚橙 #FF5A36
   辅助：青薄荷 #00A896
   点缀：琥珀黄 #FFC53A
   基底：暖米白 #FDF8F2
   ============================================= */

:root {
  --primary: #FF5A36;
  --primary-dark: #E64A28;
  --secondary: #00A896;
  --secondary-dark: #00897B;
  --accent: #FFC53A;
  --bg: #FDF8F2;
  --bg-alt: #FFF1E8;
  --ink: #263A3D;
  --ink-light: #5A6E71;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(38, 58, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(38, 58, 61, 0.08);
  --shadow-lg: 0 16px 40px rgba(38, 58, 61, 0.10);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --border-style: 2px dashed rgba(0, 168, 150, 0.25);
}

/* ===== 基础重置 ===== */
*, *::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-color: var(--bg);
  background-image: radial-gradient(rgba(0, 168, 150, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ===== 核心布局 ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-alt);
}

.section-label,
.section-title,
.section-desc {
  position: relative;
  z-index: 1;
}

/* ===== 导航 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 248, 242, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 168, 150, 0.15);
  box-shadow: 0 2px 20px rgba(38, 58, 61, 0.04);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px,
    var(--primary) 12px,
    var(--accent) 12px,
    var(--accent) 24px,
    var(--secondary) 24px,
    var(--secondary) 36px
  );
  opacity: 0.6;
}

.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.25rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(-2deg) scale(1.02);
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #FF7A5C 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 90, 54, 0.3);
}

.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:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.main-nav a:not(.nav-cta):hover {
  color: var(--primary);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 12px;
  color: #fff !important;
  font-weight: 700 !important;
  background: var(--primary);
  box-shadow: 0 4px 0 var(--primary-dark);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--primary-dark);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: rgba(0, 168, 150, 0.08);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 60%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 42px solid rgba(255, 197, 58, 0.18);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 168, 150, 0.08);
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 24px;
  margin-bottom: 20px;
  background: var(--secondary);
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 0 var(--secondary-dark);
  transform: rotate(-2deg);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
  position: relative;
}

.hero h1::after {
  content: '';
  display: block;
  width: 96px;
  height: 8px;
  margin-top: 16px;
  border-radius: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0px,
    var(--primary) 10px,
    var(--accent) 10px,
    var(--accent) 20px,
    var(--secondary) 20px,
    var(--secondary) 30px
  );
}

.hero p {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  transform: rotate(2deg);
  border: 4px solid rgba(255, 255, 255, 0.6);
  max-width: 360px;
  margin: 0 auto;
}

.hero-image::before {
  content: '🏆';
  font-size: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-image img {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
  letter-spacing: 0.01em;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 5px 0 var(--primary-dark), 0 10px 20px rgba(255, 90, 54, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--primary-dark), 0 14px 28px rgba(255, 90, 54, 0.25);
}

.btn-primary:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  box-shadow: 0 4px 0 rgba(0, 168, 150, 0.15);
}

.btn-outline:hover {
  background: rgba(0, 168, 150, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 168, 150, 0.15);
}

.btn-outline:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 168, 150, 0.15);
}

/* ===== 标签 / 标题 ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 4px 16px;
  border-left: 4px solid var(--primary);
  background: rgba(0, 168, 150, 0.06);
  border-radius: 0 8px 8px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--ink);
  position: relative;
}

.section-desc {
  max-width: 640px;
  color: var(--ink-light);
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== 卡片网格 ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: var(--radius-md);
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid rgba(38, 58, 61, 0.04);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.category-card:nth-child(odd) {
  transform: rotate(-1.2deg);
}

.category-card:nth-child(even) {
  transform: rotate(1.2deg);
}

.category-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 90, 54, 0.15);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 90, 54, 0.12), rgba(255, 197, 58, 0.12));
  color: var(--primary);
}

.category-card:nth-child(even) .card-icon {
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.12), rgba(255, 197, 58, 0.12));
  color: var(--secondary);
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--primary);
  display: inline-block;
  margin-top: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.card-link:hover {
  border-bottom-color: var(--primary);
  transform: translateX(4px);
}

/* ===== 特性块 ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--secondary) 0%, #00C9A7 100%);
  position: relative;
  min-height: 280px;
}

.feature-image::after {
  content: '⚡';
  font-size: 72px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.feature-text {
  padding: 20px 0;
}

.feature-text .section-label {
  margin-bottom: 16px;
}

.feature-text .section-title {
  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: 0.98rem;
  border-bottom: 1px dashed rgba(38, 58, 61, 0.08);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✓';
  font-weight: 800;
  color: var(--secondary);
  background: rgba(0, 168, 150, 0.1);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: 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: 24px;
  text-align: center;
}

.stat-item {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(38, 58, 61, 0.04);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.stat-item:nth-child(1)::before { background: var(--primary); }
.stat-item:nth-child(2)::before { background: var(--secondary); }
.stat-item:nth-child(3)::before { background: var(--accent); }
.stat-item:nth-child(4)::before { background: linear-gradient(90deg, var(--primary), var(--accent)); }

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary) 0%, var(--ink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ===== 内容墙 ===== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(38, 58, 61, 0.04);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-wall-item:hover {
  transform: translateY(-6px) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.content-wall-body p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(38, 58, 61, 0.06);
  border-left: 4px solid var(--primary);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-left-width: 6px;
}

.faq-item:nth-child(even) {
  border-left-color: var(--secondary);
}

.faq-item .faq-question {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  color: var(--secondary);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px dashed rgba(38, 58, 61, 0.06);
  padding-top: 14px;
}

.faq-item.open .faq-answer {
  display: block;
  animation: faqFade 0.35s ease;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== CTA 横幅 ===== */
.cta-banner {
  padding: 64px 48px;
  text-align: center;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #FF8542 50%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(255, 90, 54, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 24px solid rgba(255, 255, 255, 0.15);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  display: none;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.15), 0 10px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.15), 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* ===== 页脚 ===== */
.site-footer {
  padding: 64px 0 28px;
  background: #F0ECE4;
  border-top: 2px solid var(--primary);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 20px,
    transparent 20px,
    transparent 40px
  );
  opacity: 0.5;
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  padding-right: 24px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.footer-brand p {
  color: var(--ink-light);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 2px dashed rgba(38, 58, 61, 0.1);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--ink-light);
  font-size: 0.88rem;
  transition: all 0.2s;
}

.footer-col ul a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(38, 58, 61, 0.08);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-light);
}

/* ===== 工具类 ===== */
.text-accent {
  color: var(--primary);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--ink-light);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ===== 响应式 ===== */
@media (max-width: 992px) {
  .feature-block {
    gap: 40px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .feature-block {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 200px;
  }

  .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: 72px;
    left: 0;
    width: 100%;
    background: rgba(253, 248, 242, 0.98);
    padding: 28px;
    gap: 20px;
    border-bottom: 4px solid var(--primary);
    box-shadow: 0 20px 40px rgba(38, 58, 61, 0.12);
    animation: navSlideDown 0.3s ease;
  }

  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .main-nav.open a {
    font-size: 1.05rem;
    padding: 8px 0;
  }

  .main-nav.open .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-banner {
    padding: 48px 28px;
  }
}

@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: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h1::after {
    width: 64px;
    height: 6px;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .cta-banner {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .faq-item .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .faq-item .faq-answer {
    padding: 0 18px 16px;
  }
}