:root {
  --cream: #f9f5f0;
  --paper: #fffdf9;
  --ink: #2c3e3d;
  --ink-soft: #6b7c7a;
  --rose: #b85c66;
  --rose-deep: #98484f;
  --teal: #3f7773;
  --teal-soft: #dcebe7;
  --honey: #e2a76f;
  --honey-soft: #fbeeda;
  --coral: #e05e44;
  --coral-soft: #fde4da;
  --line: #e6dfd5;
  --shadow-sm: 0 8px 30px rgba(44, 62, 61, 0.07);
  --shadow-lg: 0 20px 50px rgba(44, 62, 61, 0.12);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(224, 94, 68, 0.22);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--rose), var(--honey));
  border-radius: 20px;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #f2ece3;
}

/* ============================================
   导航
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 223, 213, 0.7);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--coral) 35%, var(--honey) 70%, var(--teal) 100%);
  z-index: 1;
}

.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: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.logo-icon {
  position: relative;
  width: 40px;
  height: 32px;
  background: linear-gradient(135deg, var(--coral), var(--rose));
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(224, 94, 68, 0.3);
}

.logo-icon::before,
.logo-icon::after {
  content: '';
  position: absolute;
  left: 7px;
  right: 7px;
  height: 4px;
  background-image: radial-gradient(circle, var(--paper) 2.5px, transparent 3px);
  background-size: 7px 7px;
  background-position: center;
}

.logo-icon::before {
  top: 5px;
}

.logo-icon::after {
  bottom: 5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.3s;
  padding: 6px 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--honey));
  transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-nav a:hover {
  color: var(--rose-deep);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(120deg, var(--coral), var(--rose));
  color: #fff !important;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 40px;
  box-shadow: 0 6px 20px rgba(224, 94, 68, 0.32);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta::after {
  content: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 94, 68, 0.42);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 4px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 82% 25%, rgba(226, 167, 111, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 75%, rgba(63, 119, 115, 0.16) 0%, transparent 45%),
    var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  right: 7%;
  top: 16%;
  width: 300px;
  height: 300px;
  border-radius: 46% 54% 68% 32% / 44% 56% 44% 56%;
  background: linear-gradient(135deg, rgba(184, 92, 102, 0.18), rgba(226, 167, 111, 0.18));
  transform: rotate(14deg);
  pointer-events: none;
  animation: floating 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  right: 1%;
  bottom: 8%;
  width: 190px;
  height: 190px;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  background: linear-gradient(225deg, rgba(63, 119, 115, 0.14), rgba(224, 94, 68, 0.12));
  transform: rotate(-12deg);
  pointer-events: none;
  animation: floating 10s ease-in-out infinite reverse;
}

@keyframes floating {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  background: var(--coral-soft);
  color: var(--coral);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  background: linear-gradient(115deg, var(--rose-deep) 10%, var(--coral) 45%, var(--honey) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--rose-deep);
}

.hero p {
  font-size: 1.12rem;
  color: var(--ink-soft);
  opacity: 0.85;
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.hero-image:hover img {
  transform: scale(1.04);
}

/* ============================================
   按钮
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s;
}

.btn:hover::after {
  left: 130%;
}

.btn-primary {
  background: linear-gradient(120deg, var(--coral), var(--rose));
  color: #fff;
  box-shadow: 0 8px 22px rgba(224, 94, 68, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 34px rgba(224, 94, 68, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(63, 119, 115, 0.25);
}

/* ============================================
   标签 / 标题
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 14px;
  padding: 6px 18px;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(184, 92, 102, 0.1), rgba(226, 167, 111, 0.1));
  color: var(--rose-deep);
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 55px;
  height: 4px;
  margin-top: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--rose), var(--honey));
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  max-width: 620px;
  color: var(--ink-soft);
  margin-bottom: 44px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   卡片网格
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}

.category-card {
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm);
  padding: 30px 26px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--honey));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.category-card:hover {
  transform: translateY(-8px) rotate(0.6deg) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.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.5rem;
  font-weight: 800;
  background: var(--coral-soft);
  color: var(--coral);
  border-radius: 14px 6px 14px 6px;
}

.category-card:nth-child(2) .card-icon {
  background: var(--teal-soft);
  color: var(--teal);
}

.category-card:nth-child(3) .card-icon {
  background: var(--honey-soft);
  color: #c9823e;
}

.category-card:nth-child(4) .card-icon {
  background: var(--coral-soft);
  color: var(--rose);
}

.card-icon:empty::after {
  content: '影';
}

.category-card:nth-child(2) .card-icon:empty::after {
  content: '藏';
}

.category-card:nth-child(3) .card-icon:empty::after {
  content: '镜';
}

.category-card:nth-child(4) .card-icon:empty::after {
  content: '诗';
}

.category-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--rose);
  transition: gap 0.3s;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s;
}

.card-link:hover {
  gap: 10px;
}

.card-link:hover::after {
  transform: translateX(3px);
}

/* ============================================
   特性块
   ============================================ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: linear-gradient(135deg, var(--honey), var(--rose));
}

.feature-image::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: grayscale(0.2);
}

.feature-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-image:hover img {
  transform: scale(1.05);
}

.feature-text {
  position: relative;
}

.feature-text .section-title {
  margin-bottom: 18px;
}

.feature-text > p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-top: 10px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  border-bottom: 1px dashed var(--line);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '◆';
  font-weight: 700;
  font-size: 0.55rem;
  color: var(--honey);
  background: var(--honey-soft);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   数据条
   ============================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: var(--radius-sm) var(--radius-lg) var(--radius-sm) var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--teal));
  transition: width 0.4s;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.stat-item:hover::after {
  width: 80%;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--rose) 10%, var(--coral) 45%, var(--honey) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--rose);
}

.stat-label {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 8px;
  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-sm) var(--radius-lg) var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}

.content-wall-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
}

.content-wall-item:hover img {
  transform: scale(1.06);
}

.content-wall-body {
  padding: 22px 24px 26px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.content-wall-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}

.content-wall-body .card-link {
  font-size: 0.82rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open {
  border-left-color: var(--rose);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--ink);
}

.faq-question::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--rose);
  border-bottom: 2px solid var(--rose);
  transform: rotate(45deg);
  transition: transform 0.35s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  transform: rotate(225deg);
  margin-top: -6px;
}

.faq-answer {
  padding: 0 24px 20px;
  display: none;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeSlideDown 0.35s ease;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CTA 横幅
   ============================================ */
.cta-banner {
  padding: 64px 32px;
  text-align: center;
  border-radius: var(--radius-sm) var(--radius-lg) var(--radius-sm) var(--radius-lg);
  color: #fff;
  background:
    linear-gradient(rgba(44, 62, 61, 0.55), rgba(44, 62, 61, 0.55)),
    radial-gradient(ellipse at 20% 20%, rgba(226, 167, 111, 0.35), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(224, 94, 68, 0.3), transparent 50%),
    linear-gradient(135deg, var(--teal), var(--rose-deep));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.cta-banner .btn-primary {
  background: linear-gradient(120deg, #fff, #fdf0e8);
  color: var(--rose-deep);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.cta-banner .btn-primary::after {
  background: linear-gradient(120deg, transparent, rgba(184, 92, 102, 0.2), transparent);
}

/* ============================================
   页脚
   ============================================ */
.site-footer {
  padding: 64px 0 30px;
  background: #efe7dc;
  color: var(--ink);
  border-top: 1px solid rgba(184, 92, 102, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--rose-deep);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul a:hover {
  color: var(--coral);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(44, 62, 61, 0.1);
  margin-top: 48px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.footer-bottom a {
  color: var(--rose);
  text-decoration: none;
}

/* ============================================
   工具类
   ============================================ */
.text-accent {
  color: var(--coral);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 640px;
  margin: 0 auto 52px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.text-center .seo-description {
  margin-left: auto;
  margin-right: auto;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ============================================
   响应式
   ============================================ */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .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: var(--paper);
    padding: 28px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(44, 62, 61, 0.08);
    align-items: flex-start;
  }

  .main-nav.open li {
    width: 100%;
  }

  .main-nav.open a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(230, 223, 213, 0.5);
  }

  .main-nav.open .nav-cta {
    text-align: center;
    margin-top: 12px;
  }

  .hero {
    min-height: 60vh;
    padding-top: 80px;
  }

  .hero::before {
    width: 180px;
    height: 180px;
    right: -40px;
  }

  .hero::after {
    width: 120px;
    height: 120px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .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: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .cta-banner {
    padding: 44px 22px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }
}