:root {
  --ink: #3B342F;
  --ink-soft: #6B625A;
  --paper: #FAF5EE;
  --paper-deep: #F2EBDF;
  --clay: #F5EFE5;
  --cinnabar: #E85B33;
  --cinnabar-deep: #C94321;
  --jade: #3E8478;
  --gold: #E2B04A;
  --white: #FFFFFF;
  --shadow-soft: 0 10px 40px rgba(59, 52, 47, 0.08);
  --shadow-lift: 0 20px 50px rgba(59, 52, 47, 0.12);
}

/* ============ 基础重置 ============ */
*, *::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(--paper);
  background-image:
    radial-gradient(circle at 15% 10%, rgba(226, 176, 74, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(232, 91, 51, 0.04) 0%, transparent 25%);
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ============ 核心布局 ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section:nth-child(even) {
  background-color: var(--paper-deep);
  background-image: radial-gradient(rgba(232, 91, 51, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ============ 导航 ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 91, 51, 0.12);
  box-shadow: 0 2px 40px rgba(59, 52, 47, 0.04);
  transition: box-shadow 0.3s ease;
}

.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.03em;
  position: relative;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px 12px 12px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cinnabar), #F09050);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(232, 91, 51, 0.35);
  transform: rotate(-3deg);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(20deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cinnabar), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover {
  color: var(--cinnabar);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 24px;
  color: #FFF !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  background: linear-gradient(135deg, var(--cinnabar), #F0884E);
  box-shadow: 0 4px 16px rgba(232, 91, 51, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 91, 51, 0.38);
  color: #FFF !important;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
  padding: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: rgba(232, 91, 51, 0.08);
}

/* ============ Hero ============ */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at 85% 25%, rgba(226, 176, 74, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 70% 15%, rgba(232, 91, 51, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, var(--paper) 0%, #F6EDE2 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 91, 51, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(232, 91, 51, 0.05) 1.5px, transparent 1.5px),
    radial-gradient(circle at 50% 50%, rgba(62, 132, 120, 0.03) 1.5px, transparent 1.5px);
  background-size: 20px 20px, 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 22px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cinnabar);
  background: linear-gradient(135deg, rgba(232, 91, 51, 0.1), rgba(226, 176, 74, 0.16));
  border: 1px solid rgba(232, 91, 51, 0.16);
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: var(--ink);
}

.hero h1::after {
  content: '✦';
  display: inline-block;
  color: var(--cinnabar);
  font-size: 1.6rem;
  margin-left: 8px;
  vertical-align: top;
  animation: pulseGlow 3s ease-in-out infinite;
}

.hero p {
  font-size: 1.08rem;
  opacity: 0.75;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  border-radius: 24px 12px 24px 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(59, 52, 47, 0.06);
  transform: rotate(1.2deg);
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: rotate(0deg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image::after {
  content: '龍';
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 78px;
  height: 78px;
  background: linear-gradient(135deg, var(--cinnabar), #F09050);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(232, 91, 51, 0.35);
  border: 3px solid #FFF;
  z-index: 2;
  animation: floatDrift 5s ease-in-out infinite;
}

/* ============ 按钮 ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cinnabar), #F0884E);
  color: #FFF;
  box-shadow: 0 6px 22px rgba(232, 91, 51, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 91, 51, 0.42);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--cinnabar);
  color: var(--cinnabar-deep);
}

.btn-outline:hover {
  background: rgba(232, 91, 51, 0.08);
  border-color: var(--cinnabar-deep);
  transform: translateY(-2px);
}

/* ============ 标签 / 标题 ============ */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--cinnabar);
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(232, 91, 51, 0.2);
}

.section-title {
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.25;
  color: var(--ink);
}

.section-desc {
  max-width: 600px;
  opacity: 0.72;
  margin-bottom: 44px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ============ 卡片网格 ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}

.category-card {
  border-radius: 16px 8px 16px 8px;
  padding: 32px 28px;
  border: 1px solid rgba(59, 52, 47, 0.06);
  background: #FFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cinnabar), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 91, 51, 0.06) 0%, transparent 70%);
  transition: transform 0.4s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover::after {
  transform: scale(1.3);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px 14px 14px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(232, 91, 51, 0.1), rgba(226, 176, 74, 0.14));
  color: var(--cinnabar);
  position: relative;
  z-index: 1;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--cinnabar);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}

.card-link::before {
  content: '↗';
  font-size: 1rem;
}

.card-link:hover {
  gap: 8px;
}

/* ============ 特性块 ============ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.feature-image {
  border-radius: 20px 10px 20px 10px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(59, 52, 47, 0.06);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
}

.feature-image:hover {
  transform: rotate(0deg);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  padding: 16px 0;
}

.feature-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.3;
}

.feature-text p {
  opacity: 0.75;
  line-height: 1.8;
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  margin-top: 12px;
}

.feature-list li {
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 500;
}

.feature-list li::before {
  content: '✦';
  font-weight: 700;
  color: var(--cinnabar);
  font-size: 0.9rem;
}

/* ============ 数据条 ============ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 34px 20px;
  border-radius: 16px 8px 16px 8px;
  border: 1px solid rgba(59, 52, 47, 0.06);
  background: #FFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(59, 52, 47, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cinnabar), var(--gold));
  border-radius: 3px 3px 0 0;
  transition: transform 0.35s ease;
}

.stat-item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--cinnabar);
  font-feature-settings: "tnum";
}

.stat-number::after {
  content: '+';
  font-size: 1.4rem;
  vertical-align: super;
  color: var(--jade);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.65;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============ 内容墙 ============ */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: 16px 8px 16px 8px;
  overflow: hidden;
  border: 1px solid rgba(59, 52, 47, 0.06);
  background: #FFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.content-wall-item:hover img {
  transform: scale(1.03);
}

.content-wall-body {
  padding: 20px 22px;
  position: relative;
}

.content-wall-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--cinnabar), var(--gold));
  border-radius: 0 0 3px 0;
}

.content-wall-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.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 {
  border: 1px solid rgba(59, 52, 47, 0.08);
  border-radius: 14px 6px 14px 6px;
  margin-bottom: 10px;
  background: #FFF;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(232, 91, 51, 0.25);
  box-shadow: 0 4px 16px rgba(59, 52, 47, 0.05);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.96rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cinnabar);
  transition: transform 0.35s ease;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  content: '+';
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.75;
  font-size: 0.92rem;
  line-height: 1.8;
  border-top: 1px dashed rgba(59, 52, 47, 0.1);
  padding-top: 14px;
  animation: fadeSlide 0.3s ease;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============ CTA横幅 ============ */
.cta-banner {
  padding: 60px 24px;
  text-align: center;
  border-radius: 24px 12px 24px 12px;
  color: #FFF;
  background: linear-gradient(135deg, var(--cinnabar) 0%, #F0814B 60%, #EFAF4C 120%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(232, 91, 51, 0.35);
}

.cta-banner::before {
  content: '龍';
  position: absolute;
  left: -20px;
  top: -40px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  z-index: 0;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  z-index: 0;
}

.cta-banner h2 {
  color: #FFF;
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 900;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 26px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #FFF;
  color: var(--cinnabar);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ============ 页脚 ============ */
.site-footer {
  padding: 60px 0 30px;
  background-color: #F0E8DC;
  background-image: radial-gradient(rgba(232, 91, 51, 0.03) 1px, transparent 1px);
  background-size: 18px 18px;
  border-top: 1px solid rgba(232, 91, 51, 0.08);
  margin-top: 30px;
}

.site-footer .container {
  max-width: 1200px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer-brand h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--ink);
}

.footer-brand p {
  font-size: 0.86rem;
  opacity: 0.6;
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 5px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
  color: var(--cinnabar);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(59, 52, 47, 0.08);
  margin-top: 44px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.84rem;
  color: #918878;
}

/* ============ 工具类 ============ */
.text-accent {
  color: var(--cinnabar);
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  text-align: center;
  line-height: 1.8;
  font-size: 0.98rem;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ============ 动画 ============ */
@keyframes floatDrift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 580px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .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: rgba(250, 245, 238, 0.98);
    padding: 24px;
    box-shadow: 0 14px 40px rgba(59, 52, 47, 0.1);
    gap: 10px;
    border-bottom: 1px solid rgba(232, 91, 51, 0.1);
  }

  .main-nav.open a {
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(59, 52, 47, 0.08);
  }

  .main-nav.open .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-bottom: none;
  }

  .hero {
    padding: 110px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .container {
    gap: 40px;
  }

  .hero-image::after {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    right: 10px;
    bottom: 10px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-banner {
    padding: 48px 20px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 62px;
    padding: 0 16px;
  }

  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 5px 14px;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .feature-block {
    gap: 32px;
  }

  .feature-text h3 {
    font-size: 1.25rem;
  }
}