/* ═══════════════════════════════════════════════════════════════
   EHVIEWER · 异视界 · 漫无界
   Design System: "Manga Paper Pop"
   设计理念: 将漫画纸张的温暖质感与日式波普色彩融合
   配色: 暖纸色 #FAF6EF / 珊瑚红 #FF5A3C / 墨青 #008B85 / 琥珀黄 #FFC531
   ═══════════════════════════════════════════════════════════════ */

/* 基础重置 */
*, *::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-color: #FAF6EF;
  color: #1D201B;
  line-height: 1.7;
  /* 细密网点纹理——模拟漫画原稿纸 */
  background-image: radial-gradient(rgba(255, 90, 60, 0.08) 1.2px, transparent 1.2px);
  background-size: 32px 32px;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #FFC531; color: #1D201B; }

html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F5F0E8; }
::-webkit-scrollbar-thumb { background: #E7DED0; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #FF5A3C; }

/* 核心布局 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: #FFFBF5;
  background-image: radial-gradient(rgba(0, 139, 133, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* 导航 — 固定顶部 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(29, 32, 27, 0.06);
  transition: box-shadow 0.3s ease;
}

.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: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  color: #1D201B;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px 12px 12px 4px;
  background: linear-gradient(135deg, #FF5A3C 0%, #FFC531 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(255, 90, 60, 0.35);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A5048;
  transition: color 0.25s, background 0.25s;
  padding: 8px 14px;
  border-radius: 20px;
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #FF5A3C;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-nav a:not(.nav-cta):hover {
  color: #FF5A3C;
}

.main-nav a:not(.nav-cta):hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  padding: 10px 24px !important;
  border-radius: 24px;
  color: #fff !important;
  font-weight: 600;
  background: linear-gradient(135deg, #FF5A3C 0%, #FF8A5C 100%);
  box-shadow: 0 4px 16px rgba(255, 90, 60, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-left: 8px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 90, 60, 0.4);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(250, 246, 239, 0.9);
  border: 1.5px solid rgba(29, 32, 27, 0.15);
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1D201B;
  transition: background 0.2s, border-color 0.2s;
}

.menu-toggle:hover {
  background: rgba(255, 90, 60, 0.1);
  border-color: rgba(255, 90, 60, 0.3);
}

/* 首页 Hero */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 700px 450px at 88% 15%, rgba(255, 197, 49, 0.15), transparent 70%),
    radial-gradient(ellipse 450px 350px at 8% 85%, rgba(255, 90, 60, 0.07), transparent 70%);
}

/* Hero 装饰 — 漫画网格圆 */
.hero::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    linear-gradient(45deg, rgba(255, 90, 60, 0.12) 25%, transparent 25%) 0 0/12px 12px,
    linear-gradient(-45deg, rgba(255, 90, 60, 0.12) 25%, transparent 25%) 0 0/12px 12px,
    linear-gradient(45deg, transparent 75%, rgba(255, 90, 60, 0.12) 75%) 0 0/12px 12px,
    linear-gradient(-45deg, transparent 75%, rgba(255, 90, 60, 0.12) 75%) 0 0/12px 12px;
  opacity: 0.4;
  mask-image: radial-gradient(circle, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, #000, transparent 75%);
  z-index: 0;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 20px;
  border-radius: 24px 24px 24px 4px;
  background: linear-gradient(135deg, #FF5A3C, #FF7A50);
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(255, 90, 60, 0.35);
}

/* 对话泡尾巴 */
.hero-eyebrow::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 22px;
  width: 12px;
  height: 12px;
  background: #FF5A3C;
  border-radius: 3px;
  transform: rotate(45deg);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #1D201B;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #FF5A3C;
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, rgba(255, 197, 49, 0.5), rgba(255, 197, 49, 0));
  border-radius: 4px;
  z-index: -1;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.85;
  opacity: 0.72;
  color: #3A3F38;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(29, 32, 27, 0.12);
  border: 6px solid #fff;
  transform: rotate(2deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 28px 60px rgba(255, 90, 60, 0.18);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, background 0.25s;
  letter-spacing: 0.02em;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #FF5A3C 0%, #FF8A5C 100%);
  box-shadow: 0 6px 24px rgba(255, 90, 60, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 90, 60, 0.45);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline {
  background: transparent;
  border: 2px solid #008B85;
  color: #008B85;
}

.btn-outline:hover {
  background: rgba(0, 139, 133, 0.08);
  border-color: #00706A;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 139, 133, 0.12);
}

.btn-outline:active {
  transform: translateY(-1px) scale(0.98);
}

/* 标签/标题 */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #008B85;
  background: rgba(0, 139, 133, 0.12);
  padding: 6px 18px;
  border-radius: 24px;
  margin-bottom: 16px;
  position: relative;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF5A3C;
  margin-right: 8px;
  vertical-align: middle;
  animation: label-pulse 2s ease infinite;
}

@keyframes label-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1D201B;
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-desc {
  max-width: 640px;
  opacity: 0.65;
  color: #3A3F38;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* 卡片网格 */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(29, 32, 27, 0.05);
  box-shadow: 0 4px 20px rgba(29, 32, 27, 0.03);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF5A3C, #FFC531);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 16px 40px rgba(29, 32, 27, 0.1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px 16px 16px 4px;
  background: linear-gradient(135deg, #FF5A3C 0%, #FF8A5C 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(255, 90, 60, 0.3);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card:nth-child(2n) .card-icon {
  background: linear-gradient(135deg, #008B85, #00A898);
  box-shadow: 0 4px 14px rgba(0, 139, 133, 0.3);
}

.category-card:nth-child(3n) .card-icon {
  background: linear-gradient(135deg, #FFC531, #FFD766);
  box-shadow: 0 4px 14px rgba(255, 197, 49, 0.35);
}

.category-card:hover .card-icon {
  transform: scale(1.1) rotate(-6deg);
}

.card-link {
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: #008B85;
  transition: color 0.2s;
  display: inline-block;
  margin-top: 8px;
}

.card-link:hover {
  color: #FF5A3C;
}

/* 特性块 */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(29, 32, 27, 0.1);
  border: 4px solid #fff;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.feature-image:hover {
  transform: rotate(-1deg) scale(1.02);
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 90, 60, 0.08), transparent 50%);
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  padding: 24px 0;
}

.feature-text .section-label {
  margin-bottom: 14px;
}

.feature-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #1D201B;
}

.feature-text p {
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  margin-top: 8px;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #3A3F38;
}

.feature-list li::before {
  content: '✦';
  font-weight: 700;
  color: #FF5A3C;
  font-size: 1.1rem;
  display: inline-block;
  animation: star-pop 0.4s ease;
}

@keyframes star-pop {
  0% { transform: scale(0) rotate(180deg); }
  100% { transform: scale(1) rotate(0); }
}

/* 数据条 */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 20px;
  border: 1px solid rgba(29, 32, 27, 0.04);
  box-shadow: 0 4px 20px rgba(29, 32, 27, 0.04);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 8px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #FF5A3C, #FFC531);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(29, 32, 27, 0.1);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FF5A3C, #FFC531);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.92rem;
  opacity: 0.6;
  margin-top: 6px;
  font-weight: 500;
  color: #3A3F38;
}

/* 内容墙 */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(29, 32, 27, 0.04);
  background: #FFFFFF;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  position: relative;
}

.content-wall-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #FF5A3C, #FFC531);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.content-wall-item:hover::before {
  opacity: 1;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(29, 32, 27, 0.1);
}

.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: 24px;
}

.content-wall-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1D201B;
}

.content-wall-body p {
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFDF8;
  border: 1px solid rgba(29, 32, 27, 0.06);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 90, 60, 0.3);
  transform: translateX(4px);
}

.faq-item .faq-question {
  padding: 20px 26px;
  font-weight: 600;
  font-size: 0.98rem;
  color: #1D201B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: #FF5A3C;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 26px 22px;
  display: none;
  opacity: 0.75;
  font-size: 0.9rem;
  line-height: 1.85;
  color: #4A5048;
  border-top: 1px dashed rgba(29, 32, 27, 0.06);
  padding-top: 14px;
  animation: fade-slide-down 0.3s ease;
}

@keyframes fade-slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 0.75; transform: translateY(0); }
}

.faq-item.open {
  border-color: rgba(255, 90, 60, 0.35);
  box-shadow: 0 8px 30px rgba(255, 90, 60, 0.08);
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA 横幅 */
.cta-banner {
  padding: 72px 40px;
  text-align: center;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #FF5A3C 0%, #FF7A50 45%, #FFA55A 70%, #FFC531 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(255, 90, 60, 0.35);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}

.cta-banner::after {
  content: '「漫」';
  position: absolute;
  right: 24px;
  bottom: -20px;
  font-size: 8rem;
  font-weight: 900;
  opacity: 0.1;
  color: #fff;
  line-height: 1;
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #FF5A3C;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.45);
}

/* 页脚 */
.site-footer {
  padding: 72px 0 28px;
  background: #FFFBF5;
  border-top: 1px solid rgba(29, 32, 27, 0.05);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FF5A3C, #008B85, #FFC531);
  opacity: 0.3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(29, 32, 27, 0.55);
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1D201B;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #FF5A3C, #FFC531);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(29, 32, 27, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-col a:hover {
  color: #FF5A3C;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(29, 32, 27, 0.06);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(29, 32, 27, 0.4);
}

/* 工具类 */
.text-accent {
  color: #FF5A3C;
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-center .section-title {
  margin-left: auto;
  margin-right: auto;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 56px;
  opacity: 0.65;
  color: #3A3F38;
  line-height: 1.8;
  font-size: 0.92rem;
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* 卡片内标题 */
.category-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1D201B;
}

.category-card p {
  font-size: 0.85rem;
  color: rgba(29, 32, 27, 0.6);
  line-height: 1.7;
}

/* 响应式 */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .site-header {
    background: rgba(250, 246, 239, 0.96);
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-image {
    order: -1;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    background: rgba(250, 246, 239, 0.98);
    backdrop-filter: blur(24px);
    padding: 24px 24px 32px;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(29, 32, 27, 0.08);
    box-shadow: 0 20px 40px rgba(29, 32, 27, 0.08);
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(250, 246, 239, 0.98);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(29, 32, 27, 0.08);
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 12px;
    width: 100%;
  }

  .main-nav a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav a:not(.nav-cta):hover {
    background: rgba(255, 90, 60, 0.08);
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .menu-toggle {
    display: flex;
  }

  .cta-banner {
    padding: 56px 24px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .content-wall {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }

  .hero { padding-top: 100px; }

  .hero h1 {
    font-size: 1.9rem;
  }

  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .section-label {
    letter-spacing: 2px;
    font-size: 0.72rem;
  }

  .cta-banner .btn-primary {
    width: auto;
  }
}