/* =========================================================
   香蕉漫画 — 蕉趣横生，漫绘万象
   设计风格：香蕉波普 · 贴纸漫画风
   ========================================================= */

:root {
  --cream-1: #FFFBF0;
  --cream-2: #FFF5DC;
  --cream-3: #FDF1D5;
  --yellow-1: #FFD93D;
  --yellow-2: #FFC61A;
  --yellow-3: #F5B800;
  --coral-1: #FF6B6B;
  --coral-2: #FF4F4F;
  --mint-1: #38D9A9;
  --mint-2: #0ECA94;
  --navy-1: #1C2F5C;
  --navy-2: #3D4F7C;
  --text-mid: #5A6B85;
  --line-color: #F0E4CF;
  --shadow-hard: 8px 8px 0 rgba(255, 107, 107, 0.15);
  --shadow-hard-yellow: 8px 8px 0 rgba(255, 217, 61, 0.4);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

/* ---------- 基础重置 ---------- */
*, *::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;
  background-color: var(--cream-1);
  background-image:
    linear-gradient(rgba(28, 47, 92, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 47, 92, 0.025) 1px, transparent 1px);
  background-size: 26px 26px;
  color: var(--navy-1);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--yellow-1);
  color: var(--navy-1);
}

/* ---------- 核心布局 ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--cream-2);
}

/* ---------- 导航 ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 251, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--yellow-1);
  box-shadow: 0 2px 20px rgba(255, 198, 26, 0.08);
}

.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.35rem;
  text-decoration: none;
  color: var(--navy-1);
  letter-spacing: -0.5px;
  position: relative;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: rotate(-2deg) scale(1.02);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--yellow-1);
  box-shadow: 4px 4px 0 var(--coral-1);
  transform: rotate(-6deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-2);
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.main-nav a:hover {
  background: var(--yellow-1);
  color: var(--navy-1);
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 rgba(28, 47, 92, 0.12);
}

.nav-cta {
  padding: 10px 24px !important;
  border-radius: 30px !important;
  color: #fff !important;
  background: var(--coral-1);
  font-weight: 700 !important;
  box-shadow: 4px 4px 0 var(--navy-1);
}

.nav-cta:hover {
  background: var(--coral-2) !important;
  transform: translateY(-3px) !important;
  box-shadow: 6px 6px 0 var(--navy-1) !important;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--navy-1);
  border-radius: 10px;
  background: var(--yellow-1);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 3px 3px 0 rgba(28, 47, 92, 0.15);
}

/* ---------- 首页 Hero ---------- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
}

.hero::before {
  content: '🍌';
  position: absolute;
  top: 12%;
  right: 8%;
  font-size: 6rem;
  opacity: 0.12;
  transform: rotate(20deg);
  animation: float-y 5s ease-in-out infinite;
}

.hero::after {
  content: '✏️';
  position: absolute;
  bottom: 10%;
  left: 4%;
  font-size: 4.5rem;
  opacity: 0.1;
  transform: rotate(-15deg);
  animation: float-y 7s ease-in-out infinite reverse;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(20deg); }
  50% { transform: translateY(-18px) rotate(25deg); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--mint-1);
  top: -40px;
  left: -30px;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0.5; }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: var(--yellow-1);
  color: var(--navy-1);
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--navy-1);
  transform: rotate(-2deg);
}

.hero h1 {
  font-size: 3.6rem;
  line-height: 1.12;
  margin-bottom: 22px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--navy-1);
}

.hero h1 .highlight {
  background: linear-gradient(transparent 18%, var(--yellow-1) 18%);
  padding: 0 6px;
  display: inline-block;
  transform: rotate(-1deg);
}

.hero h1 .highlight-coral {
  background: linear-gradient(transparent 18%, var(--coral-1) 18%);
  color: #fff;
  padding: 0 8px;
  display: inline-block;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.72;
  max-width: 560px;
  margin-bottom: 40px;
  color: var(--text-mid);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  border: 4px solid var(--navy-1);
  box-shadow: 12px 12px 0 var(--yellow-1);
  transform: rotate(2deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.01);
  box-shadow: 18px 18px 0 var(--coral-1);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-image::after {
  content: '↗';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: var(--yellow-1);
  border: 3px solid var(--navy-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy-1);
  box-shadow: 3px 3px 0 rgba(28, 47, 92, 0.2);
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  border: 2.5px solid var(--navy-1);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.17, 0.89, 0.32, 1.28);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--coral-1);
  color: #fff;
  box-shadow: 5px 5px 0 var(--navy-1);
}

.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--navy-1);
  background: var(--coral-2);
}

.btn-outline {
  background: transparent;
  border: 2.5px solid var(--navy-1);
  color: var(--navy-1);
  box-shadow: 5px 5px 0 rgba(28, 47, 92, 0.1);
}

.btn-outline:hover {
  background: var(--yellow-1);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(28, 47, 92, 0.2);
}

/* ---------- 标签/标题 ---------- */
.section-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 16px;
  color: var(--coral-1);
  text-transform: uppercase;
  background: rgba(255, 107, 107, 0.1);
  padding: 5px 16px;
  border-radius: 30px;
  border: 2px solid transparent;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--navy-1);
  line-height: 1.15;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60%;
  height: 12px;
  background: var(--yellow-1);
  z-index: -1;
  border-radius: 6px;
  transform: rotate(-1.5deg);
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 48px;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- 卡片网格 ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.category-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 3px solid var(--navy-1);
  background: #fff;
  box-shadow: var(--shadow-hard);
  transition: all 0.3s cubic-bezier(0.17, 0.89, 0.32, 1.28);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--yellow-1);
}

.category-card:nth-child(2)::before { background: var(--coral-1); }
.category-card:nth-child(3)::before { background: var(--mint-1); }

.category-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 12px 12px 0 var(--yellow-1);
  background: var(--cream-1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.6rem;
  background: var(--yellow-1);
  border: 2.5px solid var(--navy-1);
  box-shadow: 3px 3px 0 rgba(28, 47, 92, 0.2);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.category-card:nth-child(2) .card-icon { background: var(--coral-1); color: #fff; }
.category-card:nth-child(3) .card-icon { background: var(--mint-1); }

.category-card:hover .card-icon {
  transform: rotate(5deg) scale(1.1);
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--navy-1);
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  opacity: 0.85;
  margin-bottom: 18px;
  line-height: 1.6;
}

.card-link {
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--coral-1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.card-link:hover {
  gap: 12px;
  color: var(--coral-2);
}

/* ---------- 特性块 ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid var(--navy-1);
  box-shadow: 10px 10px 0 var(--mint-1);
  transform: rotate(-2deg);
  transition: all 0.3s ease;
}

.feature-image:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow: 14px 14px 0 var(--yellow-1);
}

.feature-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.feature-text {
  position: relative;
}

.feature-text::before {
  content: '✍️';
  position: absolute;
  top: -30px;
  right: -20px;
  font-size: 3rem;
  opacity: 0.15;
  transform: rotate(15deg);
}

.feature-text h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  color: var(--navy-1);
}

.feature-text p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy-2);
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  width: 24px;
  height: 24px;
  background: var(--mint-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--navy-1);
  border: 2px solid var(--navy-1);
  flex-shrink: 0;
}

/* ---------- 数据条 ---------- */
.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);
  border: 3px solid var(--navy-1);
  background: #fff;
  position: relative;
  transition: all 0.3s cubic-bezier(0.17, 0.89, 0.32, 1.28);
}

.stat-item:nth-child(1) { box-shadow: 7px 7px 0 var(--yellow-1); }
.stat-item:nth-child(2) { box-shadow: 7px 7px 0 var(--coral-1); }
.stat-item:nth-child(3) { box-shadow: 7px 7px 0 var(--mint-1); }
.stat-item:nth-child(4) { box-shadow: 7px 7px 0 #7BA7FF; }

.stat-item:hover {
  transform: translateY(-6px) rotate(1deg);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy-1);
  letter-spacing: -2px;
  line-height: 1;
  display: block;
}

.stat-number::before {
  content: '';
  display: block;
  width: 40px;
  height: 6px;
  background: var(--yellow-1);
  border-radius: 4px;
  margin: 0 auto 14px;
}

.stat-label {
  font-size: 0.92rem;
  opacity: 0.6;
  margin-top: 10px;
  font-weight: 600;
  color: var(--text-mid);
}

/* ---------- 内容墙 ---------- */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.content-wall-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--navy-1);
  background: #fff;
  transition: all 0.3s cubic-bezier(0.17, 0.89, 0.32, 1.28);
  position: relative;
}

.content-wall-item:nth-child(odd) { transform: rotate(-1deg); }
.content-wall-item:nth-child(even) { transform: rotate(1deg); }

.content-wall-item:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.01);
  box-shadow: 12px 12px 0 var(--yellow-1);
}

.content-wall-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 3px solid var(--navy-1);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy-1);
}

.content-wall-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  opacity: 0.8;
  line-height: 1.6;
}

.content-wall-tag {
  display: inline-block;
  background: var(--cream-3);
  border: 2px solid var(--navy-1);
  border-radius: 30px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 14px;
}

.content-wall-item:nth-child(2) .content-wall-tag { background: var(--yellow-1); }
.content-wall-item:nth-child(3) .content-wall-tag { background: var(--mint-1); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 3px solid var(--navy-1);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 rgba(28, 47, 92, 0.06);
}

.faq-item:hover {
  box-shadow: 6px 6px 0 var(--yellow-1);
  transform: translateY(-2px);
}

.faq-item.open {
  box-shadow: 8px 8px 0 var(--yellow-1);
  background: var(--cream-1);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  color: var(--navy-1);
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--coral-1);
  transition: transform 0.3s ease;
  width: 32px;
  height: 32px;
  border: 2.5px solid var(--navy-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
  background: var(--yellow-1);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.75;
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fade-slide 0.3s ease;
}

@keyframes fade-slide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 0.75; transform: translateY(0); }
}

/* ---------- CTA横幅 ---------- */
.cta-banner {
  padding: 64px 48px;
  text-align: center;
  border-radius: var(--radius-xl);
  color: #fff;
  background: var(--coral-1);
  border: 4px solid var(--navy-1);
  box-shadow: 12px 12px 0 var(--yellow-1);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -60px;
  right: -60px;
}

.cta-banner::after {
  content: '🍌';
  position: absolute;
  bottom: 10px;
  right: 32px;
  font-size: 3.5rem;
  opacity: 0.25;
  transform: rotate(-20deg);
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  opacity: 0.9;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: var(--yellow-1);
  color: var(--navy-1);
  border: 3px solid var(--navy-1);
  box-shadow: 5px 5px 0 var(--navy-1);
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary:hover {
  background: var(--yellow-2);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--navy-1);
}

/* ---------- 页脚 ---------- */
.site-footer {
  padding: 72px 0 32px;
  background: var(--cream-2);
  border-top: 4px solid var(--yellow-1);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: var(--yellow-1);
  border: 3px solid var(--navy-1);
  border-radius: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--text-mid);
  opacity: 0.8;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 8px;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--navy-1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 80%;
  height: 4px;
  background: var(--yellow-1);
  border-radius: 3px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul a:hover {
  color: var(--coral-1);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 2.5px dashed rgba(28, 47, 92, 0.15);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ---------- 工具类 ---------- */
.text-accent {
  color: var(--coral-1);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  opacity: 0.7;
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 1.05rem;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .section { padding: 72px 0; }
  .section-title { font-size: 2.2rem; }
  .hero .container { gap: 40px; }
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .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: var(--cream-1);
    padding: 24px;
    border-bottom: 3px solid var(--yellow-1);
    box-shadow: 0 12px 30px rgba(28, 47, 92, 0.1);
    gap: 14px;
    align-items: stretch;
  }

  .main-nav.open a {
    display: block;
    text-align: center;
    padding: 12px;
  }

  .main-nav.open .nav-cta {
    text-align: center;
  }

  .hero-image {
    transform: rotate(0deg);
  }

  .hero::before { font-size: 4rem; right: 4%; }
  .hero::after { font-size: 3.5rem; }

  .cta-banner { padding: 48px 24px; }
  .cta-banner h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }

  .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%;
    justify-content: center;
  }

  .hero h1 { font-size: 1.8rem; }

  .section-title { font-size: 1.6rem; }

  .stat-number { font-size: 2rem; }

  .logo { font-size: 1.1rem; }
  .logo-icon { width: 34px; height: 34px; font-size: 1rem; }

  .hero-image img { aspect-ratio: 3/2; }

  .feature-text h3 { font-size: 1.4rem; }
}