/* ================================================
   PEACH CINEMA · 桃红TV 官方设计系统
   Awwwards-Level Design Language
   -------------------------------------------------
   Unique Visual Identity:
   • "Warm Cream Canvas" — 温暖米白画布
   • "Peach Blossom" — 桃粉珊瑚渐变
   • "Golden Hour" — 琥珀点缀
   • 中国美学 × 现代编辑部排版
   ================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  background: #FDF8F4;
  color: #2F2A30;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

::selection { background: rgba(232, 93, 117, 0.2); color: #E85D75; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #FDF8F4; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF8F7B, #E8A87C);
  border-radius: 5px;
}

/* Ambient Peach Aura — 環境背景光暈 */
body::before {
  content: '';
  position: fixed;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 143, 123, 0.10) 0%, rgba(232, 168, 124, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232, 93, 117, 0.07) 0%, rgba(244, 162, 156, 0.03) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* ========== CORE LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section { padding: 96px 0; position: relative; }

.section:nth-child(even) {
  background: linear-gradient(180deg, #FDF8F4, #FFF3EC 50%, #FDF8F4);
}

/* ========== HEADER / NAVIGATION ========== */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 248, 244, 0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(232, 93, 117, 0.10);
  transition: box-shadow 0.3s ease;
}

.site-header:hover { box-shadow: 0 4px 24px rgba(232, 93, 117, 0.06); }

.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: #2F2A30;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 38px; height: 38px;
  border-radius: 12px 12px 12px 4px;
  background: linear-gradient(135deg, #FF8F7B, #E85D75 60%, #D1435B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 93, 117, 0.35);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.05); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: #2F2A30;
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #FF8F7B, #E85D75);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-nav a:hover { color: #E85D75; }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  border-radius: 100px;
  color: #fff !important;
  font-weight: 600;
  background: linear-gradient(135deg, #FF8F7B, #E85D75);
  box-shadow: 0 4px 16px rgba(232, 93, 117, 0.35);
  transition: all 0.3s ease !important;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 117, 0.45);
  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 {
  display: block;
  width: 22px; height: 2px;
  background: #E85D75;
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* ========== HERO ========== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255, 127, 110, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 30px; right: 5%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232, 168, 124, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  background: rgba(232, 93, 117, 0.10);
  border: 1px solid rgba(232, 93, 117, 0.15);
  color: #E85D75;
}

.hero-eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #E85D75;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #D1435B 0%, #E85D75 35%, #FF8F7B 65%, #E8A87C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.65;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px -15px rgba(232, 93, 117, 0.25);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}

.hero-image:hover { transform: rotate(0deg) scale(1.02); }

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 93, 117, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #FF8F7B 0%, #E85D75 50%, #D1435B 100%);
  box-shadow: 0 6px 20px rgba(232, 93, 117, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 93, 117, 0.45);
}

.btn-primary:hover::before { left: 100%; }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(232, 93, 117, 0.4);
  color: #E85D75;
}

.btn-outline:hover {
  border-color: #E85D75;
  background: rgba(232, 93, 117, 0.06);
  transform: translateY(-3px);
}

/* ========== LABELS / TITLES ========== */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #E85D75;
  position: relative;
  padding-left: 28px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1.5px;
  background: linear-gradient(90deg, #FF8F7B, #E85D75);
  transform: translateY(-50%);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #2F2A30;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 42px; height: 3px;
  background: linear-gradient(90deg, #FF8F7B, #E85D75);
  border-radius: 3px;
  margin-top: 12px;
}

.section-desc {
  max-width: 600px;
  opacity: 0.65;
  margin-bottom: 44px;
  line-height: 1.8;
  font-size: 1rem;
}

.text-center .section-title::after,
.section-title.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

/* ========== CARDS GRID ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  border-radius: 20px;
  padding: 32px 28px;
  background: #FFFFFF;
  border: 1px solid rgba(232, 93, 117, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255, 143, 123, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.category-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(255, 143, 123, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -10px rgba(232, 93, 117, 0.18);
  border-color: rgba(232, 93, 117, 0.2);
}

.category-card:hover::before { opacity: 1; }
.category-card:hover::after { transform: scale(1.5); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 16px 16px 16px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 143, 123, 0.15), rgba(232, 93, 117, 0.1));
  color: #E85D75;
  transition: all 0.3s ease;
}

.category-card:hover .card-icon {
  background: linear-gradient(135deg, #FF8F7B, #E85D75);
  color: #fff;
  box-shadow: 0 4px 12px rgba(232, 93, 117, 0.3);
}

.card-link {
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  color: #E85D75;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.card-link::after { content: '→'; }

.card-link:hover { gap: 10px; }

/* ========== FEATURE BLOCK ========== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px -12px rgba(232, 93, 117, 0.18);
  transform: perspective(800px) rotateY(-2deg);
  transition: transform 0.4s ease;
}

.feature-image:hover {
  transform: perspective(800px) rotateY(0deg) scale(1.01);
}

.feature-image::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 40%;
  background: linear-gradient(180deg, transparent, rgba(232, 93, 117, 0.08));
  z-index: 1;
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text { position: relative; }

.feature-text .section-title {
  font-size: 1.9rem;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  color: #3D2C2E;
}

.feature-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255, 143, 123, 0.15);
  color: #E85D75;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ========== STATS BAR ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(232, 93, 117, 0.08);
  box-shadow: 0 4px 20px rgba(232, 93, 117, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 60%; height: 3px;
  background: linear-gradient(90deg, #FF8F7B, #E85D75, #E8A87C);
  border-radius: 0 0 6px 6px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px -8px rgba(232, 93, 117, 0.2);
}

.stat-item:hover::before { opacity: 1; }

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  background: linear-gradient(135deg, #E85D75, #FF8F7B, #E8A87C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.88rem;
  opacity: 0.6;
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ========== CONTENT WALL ========== */
.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: 1px solid rgba(232, 93, 117, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(232, 93, 117, 0.2);
  border-color: rgba(232, 93, 117, 0.15);
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.content-wall-item:hover img { transform: scale(1.05); }

.content-wall-body {
  padding: 22px;
}

.content-wall-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2F2A30;
}

.content-wall-body p {
  font-size: 0.88rem;
  opacity: 0.6;
  line-height: 1.6;
}

/* ========== FAQ ========== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(232, 93, 117, 0.12);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(232, 93, 117, 0.3);
  box-shadow: 0 4px 16px rgba(232, 93, 117, 0.06);
}

.faq-item.open {
  border-color: rgba(232, 93, 117, 0.35);
  box-shadow: 0 8px 24px rgba(232, 93, 117, 0.08);
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2F2A30;
  transition: color 0.3s ease;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: #E85D75;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-item.open .faq-question { color: #E85D75; }

.faq-item .faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  padding: 0 22px 20px;
  opacity: 0.75;
  max-height: 300px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 60px 48px;
  text-align: center;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #E85D75 0%, #D1435B 30%, #FF8F7B 70%, #E8A87C 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -15px rgba(232, 93, 117, 0.4);
}

.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

.cta-banner::before {
  width: 240px; height: 240px;
  top: -80px; left: -40px;
  background: radial-gradient(circle, #fff 0%, transparent 65%);
}

.cta-banner::after {
  width: 320px; height: 320px;
  bottom: -120px; right: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 65%);
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 12px auto 28px;
  max-width: 520px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #E85D75;
  box-shadow: 0 6px 20px rgba(209, 67, 91, 0.35);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 64px 0 28px;
  background: #3D2C2E;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #FF8F7B, #E85D75 50%, #E8A87C);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand .logo-icon {
  box-shadow: 0 4px 16px rgba(232, 93, 117, 0.5);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #fff;
  opacity: 0.9;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 4px 0;
  transition: all 0.2s ease;
}

.footer-col a:hover {
  color: #FF8F7B;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 44px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

/* ========== UTILITIES ========== */
.text-accent {
  color: #E85D75;
}

.text-center { text-align: center; }

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.65;
  line-height: 1.8;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ========== DECORATIVE SECTION SHAPES ========== */
.section .section-title.section-title-peach::after {
  background: linear-gradient(90deg, #FF8F7B, #E85D75, #E8A87C);
  width: 60px;
}

.section.separator-top {
  border-top: 1px solid rgba(232, 93, 117, 0.08);
  position: relative;
}

.section.separator-top::before {
  content: '◆';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  background: #FDF8F4;
  padding: 0 12px;
  color: #E85D75;
  font-size: 0.7rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero h1 { font-size: 2.8rem; }
  .hero { padding: 120px 0 60px; }
}

@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; }
  .hero { min-height: auto; padding: 110px 0 50px; }
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1rem; }
  .section { padding: 72px 0; }
  .section-title { font-size: 2rem; }
  .cta-banner { padding: 48px 28px; }
  .cta-banner h2 { font-size: 1.6rem; }

  .main-nav {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0;
    width: 100%;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(232, 93, 117, 0.1);
    box-shadow: 0 20px 40px rgba(232, 93, 117, 0.06);
  }

  .main-nav.open {
    display: flex !important;
  }

  .main-nav a {
    padding: 12px 8px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .main-nav a:hover {
    background: rgba(232, 93, 117, 0.06);
  }

  .main-nav a::after { display: none; }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .menu-toggle { display: flex; }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar,
  .footer-grid { grid-template-columns: 1fr; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .hero h1 { font-size: 2rem; letter-spacing: -0.5px; }
  .hero-eyebrow { font-size: 0.7rem; }
  .hero { padding: 100px 0 44px; }

  .section { padding: 60px 0; }
  .section-title { font-size: 1.7rem; }
  .section-desc { font-size: 0.92rem; }

  .stat-number { font-size: 2rem; }

  .cta-banner { padding: 40px 20px; border-radius: 18px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: 0.9rem; }

  .footer-grid { gap: 28px; }
  .site-footer { padding: 48px 0 24px; }

  .feature-text .section-title { font-size: 1.5rem; }
  .feature-list li { font-size: 0.9rem; }
}