/* ============================================================
   禁漫天堂回家的路 · 归途云端设计系统
   视觉语言：暖调归途 / 车站车票 / 日落轨迹
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  overflow-x: hidden;
  background: #FFF9F2;
  color: #3D3428;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

::selection {
  background: #FF7F6E;
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #FFF4E8;
}

::-webkit-scrollbar-thumb {
  background: #F5B95F;
  border-radius: 99px;
}

h1, h2, h3, .logo {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* ============================================================
   布局
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #FFF4E8;
}

/* ============================================================
   导航 — 暖色毛玻璃 + 日票站台感
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 252, 247, 0.85);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid #F2E5D8;
  box-shadow: 0 8px 32px -20px rgba(255, 127, 110, 0.4);
}

.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: 800;
  font-size: 1.15rem;
  text-decoration: none;
  color: #2E5A60;
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, #FF7F6E, #F5B95F);
  color: #FFFFFF;
  box-shadow: 0 4px 14px -4px rgba(255, 127, 110, 0.6);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4A4138;
  letter-spacing: 0.06em;
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #FF7F6E, #F5B95F);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: #FF7F6E;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 999px;
  color: #FFFFFF !important;
  font-weight: 700;
  background: linear-gradient(135deg, #FF7F6E 0%, #F5B95F 100%);
  box-shadow: 0 8px 20px -10px rgba(255, 127, 110, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -10px rgba(255, 127, 110, 0.8);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1.5px solid #F5B95F;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  color: #FF7F6E;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: #FFE8D6;
}

/* ============================================================
   Hero — 日落天空 / 归途起点
   ============================================================ */

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding: 160px 0 70px;
  position: relative;
  background:
    radial-gradient(900px 480px at 12% 10%, rgba(255, 232, 214, 0.95) 0%, transparent 60%),
    radial-gradient(700px 420px at 92% 18%, rgba(255, 221, 195, 0.8) 0%, transparent 55%),
    linear-gradient(180deg, #FFFDF9 0%, #FFF6EC 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    #FF7F6E 0 18px,
    #F5B95F 18px 36px,
    transparent 36px 46px
  );
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 110px;
  right: 10%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFD9A0, #FFB38F);
  box-shadow:
    0 0 0 18px rgba(255, 217, 160, 0.18),
    0 0 120px 30px rgba(255, 179, 143, 0.22);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: #FFFFFF;
  border: 1.5px solid #F5B95F;
  color: #FF7F6E;
  box-shadow: 3px 3px 0 #FFE8D6;
  letter-spacing: 0.1em;
}

.hero-eyebrow::before {
  content: '◌';
  font-size: 1.1rem;
  line-height: 1;
}

.hero h1 {
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #3D3428;
  margin-bottom: 20px;
}

.hero h1::first-line {
  background: linear-gradient(118deg, #E5503A 0%, #FF7F6E 45%, #F5B95F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1::after {
  content: '';
  display: block;
  width: 88px;
  height: 6px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF7F6E, #F5B95F);
}

.hero p {
  font-size: 1.1rem;
  color: #6B5D4F;
  max-width: 540px;
  margin-bottom: 34px;
  line-height: 1.85;
  background: rgba(255, 255, 255, 0.55);
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1 1 340px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow:
    12px 12px 0 #FFE8D6,
    0 24px 50px -30px rgba(255, 127, 110, 0.5);
  transform: rotate(1.5deg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image::after {
  content: '归途';
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FF7F6E;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ============================================================
   按钮 — 圆润路线感
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF7F6E, #F58B7A);
  box-shadow: 0 12px 28px -14px rgba(255, 127, 110, 0.8);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px -14px rgba(255, 127, 110, 0.9);
}

.btn-outline {
  background: rgba(46, 90, 96, 0.06);
  border: 1.5px solid #2E5A60;
  color: #2E5A60;
}

.btn-outline:hover {
  background: rgba(46, 90, 96, 0.12);
}

/* ============================================================
   标题体系 — 路牌指引
   ============================================================ */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  padding: 6px 16px 6px 12px;
  background: #FFE8D6;
  border-left: 3px solid #FF7F6E;
  border-radius: 4px 18px 18px 4px;
  color: #E5503A;
}

.section-label::before {
  content: '✦';
  font-size: 0.9rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #3D3428;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF7F6E, #F5B95F);
}

.section-desc,
.seo-description {
  max-width: 600px;
  opacity: 1;
  color: #7A6E62;
  margin-bottom: 44px;
  line-height: 1.8;
}

.text-accent {
  color: #FF7F6E;
}

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   产品中心 — 车站卡片 / 轨道路径
   ============================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  background-image: linear-gradient(90deg, #E8CDA8 70%, transparent 70%);
  background-size: 24px 2px;
  background-repeat: repeat-x;
  background-position: top center;
  padding-top: 18px;
}

.category-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 30px 28px 32px;
  border: 1px solid #F2E5D8;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  box-shadow: 0 6px 18px -14px rgba(245, 185, 95, 0.5);
}

.category-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  width: 6px;
  height: 40px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #FF7F6E, #F5B95F);
}

.category-card::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: #FFF0DF;
  border: 2px solid #F5B95F;
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-16deg);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px -18px rgba(255, 127, 110, 0.4);
  background: #FFFEFC;
  border-color: #FFE0C7;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #FFE8D6, #FFF6EC);
  box-shadow: 0 4px 12px -6px rgba(255, 127, 110, 0.4);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #FF7F6E;
  letter-spacing: 0.04em;
  transition: gap 0.25s ease;
}

.card-link::after {
  content: '→';
  font-size: 1.1rem;
  line-height: 1;
}

.card-link:hover {
  gap: 10px;
}

/* ============================================================
   关于我们 — 旅行手帐特性区
   ============================================================ */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 14px 14px 0 #FFE8D6;
  border: 1px solid #F2E5D8;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-text {
  position: relative;
}

.feature-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #2E5A60;
  letter-spacing: -0.02em;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 12px 14px 12px 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #4A4138;
  border: 1px solid rgba(255, 232, 214, 0.6);
  transition: background 0.3s ease, transform 0.3s ease;
}

.feature-list li:hover {
  background: #FFFFFF;
  transform: translateX(4px);
}

.feature-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #FF7F6E, #F5B95F);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================================
   数据 — 里程碑时刻
   ============================================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  background: #FFFFFF;
  padding: 32px 18px;
  border-radius: 22px 22px 22px 8px;
  border: 1px solid #F2E5D8;
  border-top: 4px solid #F5B95F;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -18px rgba(255, 127, 110, 0.4);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF7F6E;
  border: 3px solid #FFF9F2;
  transform: translateX(-50%);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FF7F6E 20%, #F5B95F 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.88rem;
  color: #8A7A6A;
  margin-top: 8px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ============================================================
   内容墙 — 纪念品画廊
   ============================================================ */

.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #F2E5D8;
  background: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 16px -14px rgba(245, 185, 95, 0.5);
}

.content-wall-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -22px rgba(255, 127, 110, 0.5);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 22px 22px 0 0;
}

.content-wall-body {
  padding: 20px 22px 24px;
  background: linear-gradient(180deg, #FFFDF9, #FFF4E8);
  border-top: 1px solid #FFE8D6;
}

.content-wall-body h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #3D3428;
}

.content-wall-body p {
  font-size: 0.85rem;
  color: #7A6E62;
  line-height: 1.6;
}

/* ============================================================
   FAQ — 折叠站点指南
   ============================================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #F2E5D8;
  border-left: 4px solid #F5B95F;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #FFFFFF;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 24px -18px rgba(255, 127, 110, 0.4);
}

.faq-item.open {
  border-left-color: #FF7F6E;
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3D3428;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #FF7F6E;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  display: none;
  color: #7A6E62;
  line-height: 1.75;
  font-size: 0.92rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: faqFade 0.3s ease;
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CTA — 下一站横幅
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, #FF7F6E 0%, #F5B95F 60%, #FFD9A0 110%);
  padding: 60px 48px;
  text-align: center;
  border-radius: 28px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(255, 127, 110, 0.7);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #FFFFFF;
  color: #FF7F6E;
  box-shadow: 0 10px 26px -14px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   页脚 — 温暖沙色归途
   ============================================================ */

.site-footer {
  position: relative;
  background: #FFF2E5;
  color: #4A4138;
  padding: 56px 0 28px;
  border-top: 1px solid #F0E3D5;
  margin-top: 30px;
}

.site-footer::before {
  content: '';
  display: block;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #FF7F6E 0 20px,
    #F5B95F 20px 40px,
    transparent 40px 46px
  );
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #7A6E62;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #2E5A60;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: #4A4138;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
  border-bottom: 1px solid transparent;
}

.footer-col a:hover {
  color: #FF7F6E;
  padding-left: 6px;
  border-bottom-color: #FFE0C7;
}

.footer-bottom {
  border-top: 1px solid #E8D5C0;
  margin-top: 40px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  color: #8A7A6A;
  letter-spacing: 0.06em;
}

/* ============================================================
   通用装饰工具
   ============================================================ */

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.card-link .text-accent {
  font-weight: 800;
}

/* ============================================================
   响应式设计
   ============================================================ */

@media (max-width: 900px) {
  .hero {
    padding: 140px 0 60px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .feature-block {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .feature-block {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .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(255, 252, 247, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 16px;
    align-items: stretch;
    border-bottom: 1px solid #F2E5D8;
    box-shadow: 0 20px 40px -24px rgba(255, 127, 110, 0.4);
  }

  .main-nav.open a {
    padding: 10px 0;
    border-bottom: 1px dashed #F2E5D8;
  }

  .main-nav.open .nav-cta {
    text-align: center;
    border: none;
  }

  .hero {
    padding-top: 120px;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero h1::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    flex-basis: 100%;
  }

  .hero::after {
    width: 90px;
    height: 90px;
    top: 80px;
    right: 8%;
  }

  .cta-banner {
    padding: 46px 24px;
    border-radius: 20px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.9rem;
  }
}

@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: 1.85rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-item {
    padding: 24px 14px;
  }

  .content-wall-item img {
    height: 170px;
  }

  .feature-block {
    gap: 32px;
  }

  .cta-banner {
    padding: 40px 18px;
  }
}