/* ================================================
   Candy Pop — 马卡龙糖果纸视觉系统
   玩美×玩媚动漫在线观看
   ================================================ */

:root {
  --candy-pink: #FF7A6E;
  --candy-pink-soft: #FFB3AB;
  --candy-mint: #6EC6A0;
  --candy-berry: #A78BFA;
  --candy-yellow: #FFD166;
  --ink: #3D3A50;
  --ink-soft: rgba(61, 58, 80, 0.65);
  --cream: #FDF8F5;
  --cream-pink: #FFF0F3;
  --shadow-pink: rgba(255, 122, 110, 0.16);
  --shadow-berry: rgba(167, 139, 250, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*, *::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-color: var(--cream);
  background-image: radial-gradient(rgba(167, 139, 250, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  color: var(--ink);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a:focus, button:focus {
  outline: 2px solid var(--candy-berry);
  outline-offset: 2px;
}

/* ================================================
   核心布局
   ================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-pink) 100%);
}

/* ================================================
   导航
   ================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(255, 122, 110, 0.08);
  box-shadow: 0 4px 24px rgba(255, 122, 110, 0.05);
}

.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: 12px;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--candy-pink), var(--candy-yellow));
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 122, 110, 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 2px;
  transition: color 0.25s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2.5px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--candy-pink), var(--candy-berry));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover {
  color: var(--candy-pink);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--candy-berry), #8B5CDF);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(167, 139, 250, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(167, 139, 250, 0.35);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 122, 110, 0.1);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-toggle::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 4px;
  box-shadow: 0 -6px 0 var(--ink), 0 6px 0 var(--ink);
  transition: all 0.3s;
}

/* ================================================
   Hero
   ================================================ */

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero::before {
  content: '玩美';
  position: absolute;
  right: -25px;
  bottom: -30px;
  font-size: 13rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  color: rgba(255, 122, 110, 0.05);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.hero::after {
  content: '玩媚';
  position: absolute;
  left: -20px;
  top: 22%;
  font-size: 9.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.15em;
  color: rgba(110, 198, 160, 0.05);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  transform: rotate(-6deg);
}

.hero-content {
  max-width: 660px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  background: rgba(255, 209, 102, 0.25);
  border: 1.5px solid rgba(255, 209, 102, 0.6);
  color: #9A6A00;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 22px;
  color: var(--ink);
}

.hero h1 .text-accent {
  background: linear-gradient(180deg, transparent 0%, transparent 48%, rgba(255, 209, 102, 0.5) 48%, rgba(255, 209, 102, 0.5) 100%);
  color: var(--candy-pink);
  font-weight: 900;
  padding: 0 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFE8E6 0%, #F0E6FF 50%, #E6F7F0 100%);
  min-height: 360px;
  box-shadow: 0 28px 60px rgba(167, 139, 250, 0.18), 0 4px 16px rgba(255, 122, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 24%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--candy-pink), var(--candy-yellow));
  box-shadow: 0 16px 40px rgba(255, 122, 110, 0.25);
  z-index: 0;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 20%;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--candy-mint), var(--candy-berry));
  box-shadow: 0 10px 28px rgba(110, 198, 160, 0.3);
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* ================================================
   按钮
   ================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--candy-pink) 0%, #FF9A8B 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 122, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 122, 110, 0.4);
}

.btn-outline {
  background: rgba(253, 248, 245, 0.8);
  border: 2px solid var(--candy-pink);
  color: var(--candy-pink);
}

.btn-outline:hover {
  background: rgba(255, 122, 110, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 110, 0.12);
}

/* ================================================
   标题 / 标签
   ================================================ */

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: rgba(255, 122, 110, 0.1);
  color: var(--candy-pink);
  padding: 5px 16px;
  border-radius: 999px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '✦';
  position: absolute;
  right: -34px;
  top: -6px;
  font-size: 1.3rem;
  color: var(--candy-yellow);
  transform: rotate(15deg);
}

.section-desc {
  max-width: 600px;
  color: var(--ink-soft);
  margin-bottom: 48px;
  font-size: 0.98rem;
  line-height: 1.8;
}

.section-desc.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   卡片网格
   ================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  background: #fff;
  border: 1.5px solid rgba(255, 240, 243, 0.9);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--candy-pink), var(--candy-yellow), var(--candy-mint), var(--candy-berry));
}

.category-card:nth-child(1) .card-icon {
  background: rgba(255, 122, 110, 0.1);
  color: var(--candy-pink);
}

.category-card:nth-child(2) .card-icon {
  background: rgba(110, 198, 160, 0.1);
  color: #4DA388;
}

.category-card:nth-child(3) .card-icon {
  background: rgba(167, 139, 250, 0.1);
  color: var(--candy-berry);
}

.category-card:nth-child(4) .card-icon {
  background: rgba(255, 209, 102, 0.15);
  color: #C49200;
}

.category-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 16px 36px rgba(255, 122, 110, 0.12), 0 4px 12px rgba(61, 58, 80, 0.04);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--candy-pink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  transition: gap 0.25s;
}

.card-link:hover {
  gap: 8px;
}

/* ================================================
   特性块
   ================================================ */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF0F3, #F0E6FF, #E6F7F0);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(255, 122, 110, 0.08);
  box-shadow: 0 20px 48px rgba(167, 139, 250, 0.12);
}

.feature-image::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 40px;
  background: rgba(255, 122, 110, 0.12);
  transform: rotate(20deg);
}

.feature-image::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: rgba(110, 198, 160, 0.18);
  transform: rotate(-15deg) translate(30px, 20px);
}

.feature-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.feature-text {
  position: relative;
}

.feature-text .section-label {
  margin-bottom: 14px;
}

.feature-text .section-title {
  margin-bottom: 20px;
}

.feature-text p {
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  margin-top: 8px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
}

.feature-list li::before {
  content: '✓';
  font-weight: 800;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(110, 198, 160, 0.14);
  color: #4DA388;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* ================================================
   统计条
   ================================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  background: #fff;
  padding: 32px 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 240, 243, 0.9);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(61, 58, 80, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(255, 122, 110, 0.1);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 122, 110, 0.07);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--candy-pink) 0%, var(--candy-berry) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 8px;
  font-weight: 500;
}

/* ================================================
   内容墙
   ================================================ */

.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 240, 243, 0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}

.content-wall-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(167, 139, 250, 0.12), 0 4px 12px rgba(61, 58, 80, 0.04);
}

.content-wall-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.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.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ================================================
   FAQ
   ================================================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1.5px solid rgba(255, 240, 243, 0.9);
  border-radius: 20px;
  margin-bottom: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 122, 110, 0.25);
}

.faq-item.open {
  box-shadow: 0 6px 24px rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.25);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.faq-item .faq-question::after {
  content: '＋';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--candy-pink);
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 24px 22px;
  display: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   CTA 横幅
   ================================================ */

.cta-banner {
  padding: 72px 48px;
  text-align: center;
  border-radius: 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--candy-berry) 0%, var(--candy-pink) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -120px;
  right: -60px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -80px;
  left: -40px;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--candy-berry);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* ================================================
   页脚
   ================================================ */

.site-footer {
  background: #FFF3EF;
  padding: 72px 0 32px;
  margin-top: 96px;
  border-radius: 48px 48px 0 0;
  position: relative;
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  padding-right: 32px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(61, 58, 80, 0.65);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-top: 8px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--ink);
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.92rem;
  color: rgba(61, 58, 80, 0.65);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  color: var(--candy-pink);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 122, 110, 0.12);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(61, 58, 80, 0.5);
}

/* ================================================
   工具类
   ================================================ */

.text-accent {
  color: var(--candy-pink);
  font-weight: 800;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ================================================
   响应式
   ================================================ */

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    min-height: 320px;
  }

  .hero-image img {
    height: 340px;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-image {
    order: -1;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero::before, .hero::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .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: 16px;
    right: 16px;
    width: auto;
    background: rgba(253, 248, 245, 0.98);
    border-radius: 20px;
    padding: 24px;
    gap: 16px;
    list-style: none;
    box-shadow: 0 24px 60px rgba(61, 58, 80, 0.14);
    border: 1px solid rgba(255, 122, 110, 0.08);
  }

  .main-nav.open a {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .main-nav.open a:hover {
    background: rgba(255, 122, 110, 0.06);
    color: var(--candy-pink);
  }

  .main-nav.open a::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-banner {
    padding: 48px 28px;
    border-radius: 28px;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}

@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 h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .section {
    padding: 64px 0;
  }

  .content-wall-item img {
    height: 180px;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }
}