/* =========================================
   天天动漫 · 弹力纸片风「Pop Paper Play」
   ========================================= */

:root {
  --paper: #FFF8F0;
  --paper-deep: #F6EFE4;
  --ink: #2D2828;
  --ink-soft: #7A7268;
  --coral: #FF5C5C;
  --coral-dark: #D04848;
  --teal: #00C4A8;
  --teal-dark: #00A38E;
  --lemon: #FFD93D;
  --lavender: #B892FF;
  --card-white: #FFFFFF;
}

/* 基础重置 */
*, *::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(--paper);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 92, 92, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

::selection {
  background: var(--coral);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--paper-deep);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--coral), var(--lemon));
  border-radius: 10px;
}

/* ========== 核心布局 ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--paper-deep);
}

/* ========== 导航 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid rgba(45, 40, 40, 0.07);
}

.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: 900;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.5px;
  transition: transform 0.25s ease;
}

.logo:hover {
  transform: scale(1.03) rotate(-2deg);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--coral), #FF9A8A);
  box-shadow: 3px 3px 0 rgba(255, 92, 92, 0.35);
  color: #fff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--coral);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--coral);
}

.nav-cta {
  padding: 9px 24px !important;
  border-radius: 10px;
  color: #fff !important;
  font-weight: 700;
  background: var(--coral);
  box-shadow: 0 3px 0 var(--coral-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--coral-dark);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: none;
  background: var(--paper-deep);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: #EDE2D4;
}

/* ========== Hero 首屏 ========== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 24px 80px;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(255, 92, 92, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 85%, rgba(0, 196, 168, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 217, 61, 0.05) 0%, transparent 70%),
    var(--paper);
}

.hero::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 3px dashed rgba(255, 92, 92, 0.25);
  border-radius: 50%;
  top: 12%;
  right: 8%;
  z-index: 1;
  pointer-events: none;
  animation: slowSpin 30s linear infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 196, 168, 0.14) 0%, transparent 65%);
  border-radius: 50%;
  bottom: 18%;
  left: 6%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
  flex: 1 1 480px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--lemon), #FFE97A);
  color: var(--ink);
  box-shadow: 3px 3px 0 rgba(45, 40, 40, 0.15);
  letter-spacing: 0.5px;
  transform: rotate(-1deg);
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: blink 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--ink);
  text-shadow:
    3px 3px 0 var(--lemon),
    6px 6px 0 rgba(255, 92, 92, 0.3);
}

.hero p {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0 1 420px;
  min-width: 280px;
  border-radius: 22px;
  padding: 12px;
  background: #fff;
  border: 1.5px solid #EFE5DA;
  box-shadow:
    6px 6px 0 rgba(255, 92, 92, 0.2),
    12px 12px 0 rgba(255, 217, 61, 0.18);
  transform: rotate(2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  z-index: 2;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    8px 8px 0 rgba(255, 92, 92, 0.25),
    16px 16px 0 rgba(255, 217, 61, 0.22);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

/* ========== 按钮 ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 0 var(--coral-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--coral-dark);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--coral-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal-dark);
  box-shadow: 0 4px 0 rgba(0, 196, 168, 0.2);
}

.btn-outline:hover {
  background: rgba(0, 196, 168, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 196, 168, 0.2);
}

.btn-outline:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 196, 168, 0.2);
}

/* ========== 标签 / 标题 ========== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: var(--coral);
  background: rgba(255, 92, 92, 0.09);
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
}

.section-title {
  font-size: calc(1.8rem + 0.8vw);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -1px;
  padding-left: 16px;
  border-left: 6px solid var(--coral);
  position: relative;
}

.section-desc {
  max-width: 620px;
  margin-bottom: 40px;
  color: var(--ink-soft);
  line-height: 1.85;
  font-size: 1.05rem;
}

.text-accent {
  color: var(--coral);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--ink-soft);
  line-height: 1.85;
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ========== 卡片网格 ========== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  border-radius: 16px;
  padding: 28px;
  border: 2px solid #EFE5DA;
  background: var(--card-white);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 4px 4px 0 rgba(45, 40, 40, 0.04);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  width: 44px;
  height: 5px;
  border-radius: 0 0 4px 4px;
  background: var(--coral);
}

.category-card:nth-child(2)::before {
  background: var(--teal);
}

.category-card:nth-child(3)::before {
  background: var(--lemon);
}

.category-card:nth-child(4)::before {
  background: var(--lavender);
}

.category-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow:
    6px 6px 0 rgba(255, 92, 92, 0.18),
    12px 12px 0 rgba(255, 217, 61, 0.14);
  border-color: #F2DAD4;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #FFF0EE, #FFE1DB);
  box-shadow: 3px 3px 0 rgba(255, 92, 92, 0.1);
}

.category-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #E6FAF7, #D0F4EF);
  box-shadow: 3px 3px 0 rgba(0, 196, 168, 0.12);
}

.category-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, #FFFBE9, #FFF3C6);
  box-shadow: 3px 3px 0 rgba(255, 217, 61, 0.2);
}

.category-card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, #F3EDFF, #E8DCFF);
  box-shadow: 3px 3px 0 rgba(184, 146, 255, 0.2);
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.card-link:hover {
  gap: 8px;
}

/* ========== 特性块 ========== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 8px 8px 0 rgba(0, 196, 168, 0.2);
  border: 6px solid #fff;
  transform: rotate(-1.5deg);
  transition: transform 0.35s ease;
}

.feature-block:hover .feature-image {
  transform: rotate(0deg) scale(1.015);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.feature-text {
  padding: 20px 0;
}

.feature-text .section-label {
  background: rgba(0, 196, 168, 0.12);
  color: var(--teal-dark);
}

.feature-text h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.feature-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-text p {
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-top: 12px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.feature-list li::before {
  content: '✓';
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.78rem;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 rgba(0, 196, 168, 0.25);
}

/* ========== 数据条 ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid #EFE5DA;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
}

.stat-item:nth-child(1) {
  background: linear-gradient(145deg, #FFFFFF, #FFF0EE);
}
.stat-item:nth-child(1)::before {
  background: var(--coral);
}

.stat-item:nth-child(2) {
  background: linear-gradient(145deg, #FFFFFF, #E8FBF8);
}
.stat-item:nth-child(2)::before {
  background: var(--teal);
}

.stat-item:nth-child(3) {
  background: linear-gradient(145deg, #FFFFFF, #F3EDFF);
}
.stat-item:nth-child(3)::before {
  background: var(--lavender);
}

.stat-item:nth-child(4) {
  background: linear-gradient(145deg, #FFFFFF, #FFFBE9);
}
.stat-item:nth-child(4)::before {
  background: var(--lemon);
}

.stat-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 6px 6px 0 rgba(45, 40, 40, 0.07);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  display: block;
}

.stat-item:nth-child(1) .stat-number {
  color: var(--coral);
  text-shadow: 2px 2px 0 rgba(255, 92, 92, 0.18);
}

.stat-item:nth-child(2) .stat-number {
  color: var(--teal-dark);
  text-shadow: 2px 2px 0 rgba(0, 196, 168, 0.18);
}

.stat-item:nth-child(3) .stat-number {
  color: #8B6BF0;
  text-shadow: 2px 2px 0 rgba(184, 146, 255, 0.25);
}

.stat-item:nth-child(4) .stat-number {
  color: #F7A61B;
  text-shadow: 2px 2px 0 rgba(255, 217, 61, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 8px;
  font-weight: 500;
  display: block;
}

/* ========== 内容墙 ========== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #F0E8DD;
  transition: all 0.3s ease;
  position: relative;
}

.content-wall-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--lemon), var(--teal));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.content-wall-item:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: 6px 6px 0 rgba(0, 196, 168, 0.15);
}

.content-wall-item:hover::after {
  opacity: 1;
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.content-wall-item:hover img {
  transform: scale(1.04);
}

.content-wall-body {
  padding: 20px;
}

.content-wall-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.content-wall-body p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid #E5DCD0;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 92, 92, 0.35);
  box-shadow: 3px 3px 0 rgba(255, 92, 92, 0.1);
}

.faq-item.open {
  border-color: rgba(255, 92, 92, 0.3);
  background: rgba(255, 248, 240, 0.5);
  box-shadow: 4px 4px 0 rgba(255, 92, 92, 0.1);
}

.faq-item .faq-question {
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
}

.faq-item.open .faq-question {
  color: var(--coral);
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--coral);
  transition: transform 0.3s ease;
  line-height: 1;
  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);
  line-height: 1.85;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ========== CTA 横幅 ========== */
.cta-banner {
  padding: 72px 24px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(120deg, var(--coral) 0%, #FF7A72 40%, #FF9A76 70%, #FFB88C 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow:
    8px 8px 0 rgba(255, 92, 92, 0.18),
    16px 16px 0 rgba(255, 217, 61, 0.18);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 3px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: slowSpin 20s linear infinite;
}

.cta-banner::after {
  content: '✦ ✦ ✦';
  position: absolute;
  bottom: 14px;
  left: 24px;
  font-size: 1.4rem;
  opacity: 0.3;
  letter-spacing: 10px;
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--coral);
  box-shadow: 0 4px 0 rgba(180, 50, 50, 0.3);
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary:hover {
  box-shadow: 0 6px 0 rgba(180, 50, 50, 0.3);
}

/* ========== 页脚 ========== */
.site-footer {
  padding: 64px 0 28px;
  background: var(--paper-deep);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--coral), var(--lemon), var(--teal)) 1;
  color: var(--ink);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--ink-soft);
  line-height: 1.85;
  font-size: 0.9rem;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 70%;
  height: 3px;
  border-radius: 3px;
  background: var(--coral);
  opacity: 0.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--coral);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(45, 40, 40, 0.08);
  margin-top: 44px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ========== 动画 ========== */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ========== 响应式 ========== */
@media (max-width: 900px) {
  .hero {
    padding-top: 115px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 110px 24px 60px;
    gap: 32px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-image {
    flex: 1 1 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-image {
    transform: rotate(-1deg);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .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: rgba(255, 248, 240, 0.98);
    padding: 24px;
    gap: 0;
    box-shadow: 0 16px 32px rgba(45, 40, 40, 0.1);
    border-bottom: 1.5px solid #F0E8DD;
  }

  .main-nav.open li {
    width: 100%;
  }

  .main-nav.open a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #F0E8DD;
    width: 100%;
    font-size: 1rem;
  }

  .main-nav.open a::after {
    display: none;
  }

  .main-nav.open .nav-cta {
    margin-top: 12px;
    text-align: center;
    background: var(--coral);
    color: #fff !important;
    border-radius: 10px;
    border-bottom: none;
  }

  .cta-banner {
    padding: 56px 20px;
  }

  .cta-banner h2 {
    font-size: 1.7rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@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;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .cta-banner::before {
    width: 160px;
    height: 160px;
    top: -60px;
    right: -60px;
  }

  .cta-banner::after {
    font-size: 1rem;
    letter-spacing: 6px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}