/* ==========================================
   红桃视频 · YY4480 苹果乐园
   设计语言：蜜糖多汁 / 桃心糖果风
   配色系统：奶油白 × 桃粉 × 杏黄 × 薄荷绿
   ========================================== */

:root {
  --cream: #FFF8F2;
  --cream-deep: #FFF0EA;
  --peach: #FF3E6C;
  --peach-light: #FF6B9C;
  --peach-glow: rgba(255, 62, 108, 0.14);
  --apricot: #FFB84D;
  --mint: #2EC4B6;
  --lavender: #B388EB;
  --text-main: #3D3D3D;
  --text-soft: #6D6D6D;
  --card-border: #FFEBE8;
  --card-border-hover: #FFC9D4;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-card: 0 16px 40px rgba(255, 62, 108, 0.1);
  --shadow-btn: 0 6px 20px rgba(255, 62, 108, 0.3);
  --gradient-main: linear-gradient(135deg, #FF3E6C 0%, #FF6B9C 100%);
  --gradient-warm: linear-gradient(135deg, #FFB84D, #FFE6B3);
  --gradient-mint: linear-gradient(135deg, #2EC4B6, #6EE7DE);
}

/* ===== 基础重置 ===== */
*,
*::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(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--peach);
  color: #fff;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FFB84D, #FF3E6C);
  border-radius: 8px;
}

/* ===== 核心布局 ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--cream-deep);
}

/* ===== 导航 — 固定顶部 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 242, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 62, 108, 0.08);
  box-shadow: 0 4px 30px rgba(255, 62, 108, 0.06);
  transition: box-shadow 0.3s ease;
}

.site-header:hover {
  box-shadow: 0 6px 36px rgba(255, 62, 108, 0.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: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px 14px 14px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 62, 108, 0.35);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.25s;
  position: relative;
  padding: 4px 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gradient-main);
  border-radius: 4px;
  transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.main-nav a:hover {
  color: var(--peach);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--gradient-main);
  color: #fff !important;
  font-weight: 700;
  box-shadow: var(--shadow-btn);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255, 62, 108, 0.4);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--peach);
  border-radius: 3px;
  transition: 0.3s;
}

/* ===== 首页 Hero ===== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FFF8F2 0%, #FFE8E0 55%, #FFF0F4 100%);
  padding-top: 72px;
}

.hero::before {
  content: '♥';
  position: absolute;
  top: 50%;
  right: 6%;
  font-size: 24rem;
  line-height: 1;
  color: rgba(255, 62, 108, 0.05);
  transform: translateY(-50%) rotate(8deg);
  animation: heroHeartFloat 8s ease-in-out infinite;
  font-family: Georgia, serif;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.13) 0%, transparent 70%);
  bottom: -80px;
  left: 4%;
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  background: var(--gradient-warm);
  color: #6B4E20;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 14px rgba(255, 184, 77, 0.3);
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 22px;
  font-weight: 800;
  color: #2D2D2D;
  letter-spacing: -1px;
}

.hero h1 .text-accent {
  color: var(--peach);
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hero h1 .text-accent::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--apricot), var(--peach));
  border-radius: 8px;
  opacity: 0.28;
  z-index: -1;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.6;
  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-lg);
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 64px rgba(255, 62, 108, 0.16);
  transform: rotate(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow: 0 30px 80px rgba(255, 62, 108, 0.22);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.2));
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 520px;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 62, 108, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--peach);
  color: var(--peach);
}

.btn-outline:hover {
  background: rgba(255, 62, 108, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 62, 108, 0.12);
}

/* ===== 标签/标题 ===== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--peach);
  position: relative;
  padding-left: 30px;
}

.section-label::before {
  content: '♥';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--peach);
}

.section-label::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 2px;
  background: var(--peach);
  border-radius: 2px;
  opacity: 0.5;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #2D2D2D;
  line-height: 1.3;
}

.section-desc {
  max-width: 600px;
  opacity: 0.6;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ===== 卡片网格 ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 20px;
  padding: 32px 28px;
  background: #fff;
  border: 2px solid var(--card-border);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 62, 108, 0.06);
  transition: transform 0.5s ease, background 0.5s ease;
}

.category-card:nth-child(2n)::before {
  background: rgba(46, 196, 182, 0.08);
}

.category-card:nth-child(3n)::before {
  background: rgba(255, 184, 77, 0.1);
}

.category-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-card);
  border-color: var(--card-border-hover);
}

.category-card:hover::before {
  transform: scale(2.5);
  background: rgba(255, 62, 108, 0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #FFF0F4, #FFE8E0);
  color: var(--peach);
  transition: transform 0.4s;
}

.category-card:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
}

.category-card:nth-child(2n) .card-icon {
  background: linear-gradient(135deg, #E6FFF8, #D4F5F0);
  color: var(--mint);
}

.category-card:nth-child(3n) .card-icon {
  background: linear-gradient(135deg, #FFF4E6, #FFE8C9);
  color: #E8952E;
}

.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--peach);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.card-link:hover {
  gap: 12px;
  color: #E82A5B;
}

/* ===== 特性块 ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(255, 62, 108, 0.1);
  position: relative;
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(255, 62, 108, 0.06));
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-image:hover img {
  transform: scale(1.04);
}

.feature-text {
  padding: 36px;
  background: linear-gradient(135deg, #FFF8F2, #FFF0F4);
  border-radius: var(--radius-lg);
  border: 2px solid #FFE6E0;
  position: relative;
}

.feature-text::before {
  content: '✦';
  position: absolute;
  top: -14px;
  left: 32px;
  font-size: 1.4rem;
  color: var(--peach);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 50px;
  border: 2px solid #FFE6E0;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.98rem;
}

.feature-list li::before {
  content: '✓';
  font-weight: 700;
  color: var(--peach);
  background: rgba(255, 62, 108, 0.08);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* ===== 数据条 ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 2px solid var(--card-border);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.stat-item:nth-child(1) {
  background: linear-gradient(135deg, #FFF8F2, #FFF0F4);
}

.stat-item:nth-child(2) {
  background: linear-gradient(135deg, #F0FFFC, #E0F7F4);
}

.stat-item:nth-child(3) {
  background: linear-gradient(135deg, #FFFBF0, #FFF4E0);
}

.stat-item:nth-child(4) {
  background: linear-gradient(135deg, #F8F4FF, #F0EBFF);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--gradient-main);
  transition: width 0.4s ease;
}

.stat-item:hover::after {
  width: 60%;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--card-border-hover);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.92rem;
  opacity: 0.6;
  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: 20px;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--card-border);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: var(--card-border-hover);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.content-wall-item:hover img {
  transform: scale(1.06);
}

.content-wall-body {
  padding: 24px 24px 28px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.content-wall-body p {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--card-border);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: all 0.35s ease;
}

.faq-item:hover {
  border-color: var(--card-border-hover);
  box-shadow: 0 4px 20px rgba(255, 62, 108, 0.06);
}

.faq-item.open {
  border-color: var(--peach);
  box-shadow: 0 12px 32px rgba(255, 62, 108, 0.1);
  background: linear-gradient(135deg, #FFF8F2, #FFF0F4);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--peach);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1;
}

.faq-item.open .faq-question::after {
  transform: rotate(135deg);
}

.faq-item .faq-answer {
  padding: 0 24px 22px;
  display: none;
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* ===== CTA 横幅 ===== */
.cta-banner {
  padding: 64px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #FF3E6C 0%, #FF6B9C 45%, #FFB84D 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(255, 62, 108, 0.25);
}

.cta-banner::before {
  content: '♥';
  position: absolute;
  top: -20px;
  right: 40px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  transform: rotate(15deg);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.5px;
  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: #fff;
  color: var(--peach);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===== 页脚 ===== */
.site-footer {
  padding: 64px 0 28px;
  background: linear-gradient(180deg, var(--cream) 0%, #FFE8E0 100%);
  border-top: 2px solid #FFE6E0;
  margin-top: 40px;
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand p {
  opacity: 0.6;
  margin-top: 14px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: #2D2D2D;
  position: relative;
  padding-bottom: 10px;
  font-weight: 700;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--gradient-main);
  border-radius: 4px;
}

.footer-col a {
  display: block;
  color: var(--text-soft);
  text-decoration: none;
  padding: 5px 0;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

.footer-col a:hover {
  color: var(--peach);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 62, 108, 0.12);
  margin-top: 48px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: #9D9D9D;
  letter-spacing: 0.3px;
}

.footer-bottom::before {
  content: '♥';
  font-size: 0.7rem;
  color: var(--peach);
  margin-right: 6px;
  opacity: 0.5;
}

/* ===== 工具类 ===== */
.text-accent {
  color: var(--peach);
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.6;
  text-align: center;
  line-height: 1.8;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* ===== 动画关键帧 ===== */
@keyframes heroHeartFloat {
  0%, 100% {
    transform: translateY(-50%) rotate(8deg) scale(1);
  }
  50% {
    transform: translateY(-58%) rotate(5deg) scale(1.03);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== 响应式 ===== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.6rem;
  }
  
  .hero .container {
    gap: 32px;
  }
  
  .hero-image {
    max-width: 420px;
  }
  
  .hero-image img {
    max-width: 100%;
  }
  
  .feature-block {
    gap: 40px;
  }
  
  .cta-banner h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 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;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--cream);
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 16px 40px rgba(255, 62, 108, 0.12);
    border-top: 1px solid #FFE6E0;
    align-items: flex-start;
  }
  
  .main-nav.open {
    display: flex;
    animation: fadeIn 0.3s ease;
  }
  
  .main-nav a::after {
    display: none;
  }
  
  .nav-cta {
    margin-top: 8px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  
  .hero .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-image {
    width: 100%;
    max-width: 100%;
  }
  
  .hero::before {
    font-size: 14rem;
    right: -20px;
  }
  
  .feature-text {
    padding: 28px 24px;
  }
  
  .cta-banner {
    padding: 48px 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;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero h1 {
    font-size: 1.9rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .footer-brand {
    padding-right: 0;
  }
  
  .footer-col a {
    font-size: 0.88rem;
  }
}