/* ============================================
   羞羞视频 — 心动流体设计系统
   珊瑚粉 × 薄荷绿 × 奶油白
   ============================================ */

:root {
  --coral: #FF6B8A;
  --coral-deep: #E8576F;
  --coral-soft: #FFE8EE;
  --coral-glow: rgba(255, 107, 138, 0.25);
  --mint: #3ECFB0;
  --mint-deep: #27A88B;
  --mint-soft: #E7F8F4;
  --sunshine: #FFD166;
  --cream: #FFFBF7;
  --blush: #FFF2F0;
  --ink: #2D3436;
  --ink-soft: #7B8694;
  --white: #FFFFFF;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-organic: 30% 70% 60% 40% / 40% 50% 50% 60%;
  --shadow-sm: 0 4px 16px rgba(255, 107, 138, 0.08);
  --shadow-md: 0 12px 32px rgba(255, 107, 138, 0.12);
  --shadow-lg: 0 24px 64px rgba(255, 107, 138, 0.16);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- 基础重置 ---------- */
*, *::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: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--coral);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--coral), var(--sunshine));
  border-radius: 8px;
}

/* ---------- 核心布局 ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, var(--mint-soft), #F2FBFA 100%);
}

/* ---------- 导航 ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 251, 247, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 138, 0.1);
  transition: var(--ease);
}

.site-header:hover {
  border-bottom-color: rgba(255, 107, 138, 0.2);
}

.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.25rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.85;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 16px 8px 16px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--sunshine));
  box-shadow: 0 4px 14px rgba(255, 107, 138, 0.35);
  animation: heartbeat 3s ease-in-out infinite;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color 0.3s;
  padding: 4px 0;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--sunshine));
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--coral-deep);
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 100px;
  color: var(--white) !important;
  font-weight: 700;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  box-shadow: 0 4px 14px rgba(255, 107, 138, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 138, 0.4);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: var(--coral-soft);
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.menu-toggle:hover {
  background: var(--coral);
}

.menu-toggle svg,
.menu-toggle span {
  color: var(--coral);
}

.menu-toggle:hover svg {
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 4%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral-soft), transparent 70%);
  animation: heroPulse 4s ease-in-out infinite;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mint-soft), transparent 70%);
  z-index: 0;
}

.hero-content,
.hero-image {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--coral-soft), var(--mint-soft));
  color: var(--coral-deep);
  border: 1px solid rgba(255, 107, 138, 0.15);
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--coral-deep), var(--coral) 40%, var(--sunshine) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-organic);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  transform: rotate(2deg);
  transition: transform 0.6s var(--ease);
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  white-space: nowrap;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  box-shadow: 0 8px 24px rgba(255, 107, 138, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255, 107, 138, 0.42);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--coral);
  color: var(--coral-deep);
  box-shadow: 0 4px 12px rgba(255, 107, 138, 0.08);
}

.btn-outline:hover {
  background: var(--coral-soft);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 138, 0.2);
}

/* ---------- 标签/标题 ---------- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--mint-soft);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  color: var(--ink);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--coral), var(--sunshine));
  opacity: 0.18;
  border-radius: 10px;
  z-index: -1;
}

.section-desc {
  max-width: 600px;
  color: var(--ink-soft);
  opacity: 0.85;
  margin-bottom: 44px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- 卡片网格 ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--sunshine), var(--mint));
  opacity: 0;
  transition: opacity 0.4s;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--white) 75%, var(--blush));
}

.category-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px 8px 18px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--sunshine));
  box-shadow: 0 6px 16px rgba(255, 107, 138, 0.25);
}

.category-card:hover .card-icon {
  transform: scale(1.08) rotate(-6deg);
  transition: transform 0.4s var(--ease);
}

.category-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
}

.category-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease), color 0.3s;
}

.card-link:hover {
  gap: 10px;
  color: var(--coral);
}

/* ---------- 特性块 ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius-organic);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  position: relative;
}

.feature-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--mint-soft);
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-image:hover::after {
  opacity: 1;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}

.feature-image:hover img {
  transform: scale(1.03);
}

.feature-text {
  padding: 0 12px;
}

.feature-text h2 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
}

.feature-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '♥';
  font-weight: 700;
  color: var(--coral);
  font-size: 0.8rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- 数据条 ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 32px 20px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--coral));
  opacity: 0;
  transition: opacity 0.35s;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--coral), var(--sunshine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.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 {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}

.content-wall-item:hover img {
  transform: scale(1.06);
}

.content-wall-body {
  padding: 22px 22px 24px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.content-wall-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}

.content-wall-body a {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--coral-deep);
  text-decoration: none;
  transition: color 0.3s;
}

.content-wall-body a:hover {
  color: var(--coral);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(255, 107, 138, 0.12);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 107, 138, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  border-color: rgba(255, 107, 138, 0.4);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(180deg, var(--white), var(--blush));
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--coral);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 22px 18px;
  display: none;
  color: var(--ink-soft);
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.4s var(--ease);
}

/* ---------- CTA横幅 ---------- */
.cta-banner {
  padding: 64px 32px;
  text-align: center;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #FF8E9E 50%, var(--sunshine));
  box-shadow: 0 20px 48px rgba(255, 107, 138, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--coral-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* ---------- 页脚 ---------- */
.site-footer {
  padding: 64px 0 28px;
  background: var(--blush);
  border-top: 1px solid rgba(255, 107, 138, 0.1);
  color: var(--ink);
}

.site-footer .container {
  max-width: 1200px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  padding-right: 24px;
}

.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: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}

.footer-col a {
  display: block;
  padding: 5px 0;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
  color: var(--coral-deep);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 107, 138, 0.12);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.footer-bottom a {
  color: var(--coral-deep);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ---------- 工具类 ---------- */
.text-accent {
  color: var(--coral-deep);
  background: transparent;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* ---------- 动画 ---------- */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.08); }
  20% { transform: scale(1); }
  30% { transform: scale(1.08); }
  40% { transform: scale(1); }
}

@keyframes heroPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- 响应式 ---------- */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-block .feature-image {
    order: 1;
  }

  .feature-block .feature-text {
    order: 2;
    padding: 0;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(255, 251, 247, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px 28px;
    border-bottom: 1px solid rgba(255, 107, 138, 0.12);
    gap: 18px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    font-size: 1.05rem;
    padding: 8px 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-image {
    margin-top: 40px;
    transform: none;
  }

  .hero-image:hover {
    transform: rotate(0deg);
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .content-wall-item img {
    height: 180px;
  }

  .cta-banner {
    padding: 48px 20px;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .cta-banner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.3rem;
    letter-spacing: -0.02em;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-block {
    gap: 24px;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .content-wall-item img {
    height: 160px;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .main-nav {
    padding-left: 16px;
    padding-right: 16px;
  }
}