```css
/* ============================================
   风车动漫 · 风车之下，动漫无界
   Design System — "Manga Breeze" 漫画风巡礼
   ============================================ */

:root {
  --primary: #F4573C;
  --primary-dark: #D63D25;
  --primary-light: #FF8A70;
  --secondary: #2EC4B6;
  --secondary-dark: #1E9D92;
  --accent: #FFC53A;
  --cream: #FBF7F0;
  --mint: #F0F6F4;
  --ink: #2D2925;
  --ink-2: #6F6359;
  --ink-3: #A7947F;
  --line: #EADFD3;
  --line-dark: #DCCBBB;
  --shadow-sm: 0 4px 16px rgba(204, 152, 104, 0.10);
  --shadow-md: 0 10px 32px rgba(204, 152, 104, 0.16);
  --shadow-lg: 0 20px 50px rgba(204, 152, 104, 0.20);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-h: 68px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'Noto Sans SC', sans-serif;
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(244, 87, 60, 0.18);
  color: var(--primary-dark);
}

/* Custom scrollbar — colorful anime touch */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-dark), var(--accent));
}

/* ===== Animations ===== */
@keyframes windmill-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-18px) scale(1.02); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 87, 60, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(244, 87, 60, 0); }
}

/* ===== Layout ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section:nth-child(even) {
  background-color: var(--mint);
  background-image: radial-gradient(rgba(46, 196, 182, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ===== Header / Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 252, 248, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(204, 152, 104, 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary), var(--primary));
  background-size: 200% 100%;
  animation: shimmer 6s ease infinite;
  z-index: 1001;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  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(--ink);
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.logo:hover {
  color: var(--primary);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 12px rgba(244, 87, 60, 0.3);
  position: relative;
  flex-shrink: 0;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  animation: windmill-spin 24s linear infinite;
}

.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(--ink-2);
  padding: 6px 2px;
  position: relative;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 9px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(244, 87, 60, 0.28);
  transition: all 0.25s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 87, 60, 0.38);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.25s ease;
  padding: 0;
}

.menu-toggle:hover {
  border-color: var(--primary);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle:hover span {
  background: var(--primary);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  background: linear-gradient(180deg, rgba(255, 197, 58, 0.05) 0%, transparent 50%);
  overflow: hidden;
}

/* Manga sun decorative */
.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    transparent 0 130px,
    rgba(244, 87, 60, 0.10) 132px 138px,
    transparent 140px
  );
  opacity: 0.6;
  animation: heroFloat 8s ease-in-out infinite;
  pointer-events: none;
}

/* Manga halftone dot layer */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#DCC5AE 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  opacity: 0.28;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 85% 50%, black 0%, transparent 55%);
  mask-image: radial-gradient(circle at 85% 50%, black 0%, transparent 55%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: center;
  z-index: 2;
}

.hero-content {
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 18px;
  background: rgba(244, 87, 60, 0.08);
  color: var(--primary);
  border-radius: 50px;
  border: 1.5px dashed rgba(244, 87, 60, 0.25);
  margin-bottom: 22px;
  letter-spacing: 0.06em;
  animation: tagPulse 3s ease infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--ink);
}

.hero h1 .text-accent {
  background: linear-gradient(120deg, var(--primary), #FF8A50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 28px 10px 28px 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: rotate(1.2deg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
  border: 4px solid #fff;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow: 0 24px 60px rgba(204, 152, 104, 0.28);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FF7A50 100%);
  color: #fff !important;
  box-shadow: 0 6px 22px rgba(244, 87, 60, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 130%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(244, 87, 60, 0.42);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--ink-2);
  color: var(--ink) !important;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: rgba(244, 87, 60, 0.04);
  transform: translateY(-2px);
}

/* ===== Section Label & Title ===== */
.section-label {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(244, 87, 60, 0.07);
  padding: 6px 18px 6px 16px;
  border-radius: 4px 20px 20px 20px;
  margin-bottom: 16px;
  border-left: 3px solid var(--primary);
  position: relative;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  max-width: 600px;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 44px;
}

.text-center .section-desc {
  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 {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px 6px 22px 6px;
  padding: 30px 26px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.category-card::before {
  content: '';
  position: absolute;
  right: -28px;
  top: -28px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.05;
  transition: transform 0.5s var(--ease), opacity 0.4s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.category-card:hover {
  transform: translateY(-5px) rotate(-0.4deg);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 87, 60, 0.22);
}

.category-card:hover::before {
  transform: scale(1.5);
  opacity: 0.12;
}

.category-card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px 6px 16px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(244, 87, 60, 0.12), rgba(255, 197, 58, 0.12));
  transition: all 0.35s ease;
}

.category-card:hover .card-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
}

.category-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.category-card p {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: none;
  margin-top: 16px;
  transition: gap 0.3s var(--ease), color 0.2s;
}

.card-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* ===== Feature Block ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 26px 8px 26px 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.feature-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255, 255, 255, 0.35);
  border-radius: 26px 8px 26px 8px;
  z-index: 2;
  pointer-events: none;
}

.feature-image::after {
  content: '✦';
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 197, 58, 0.4);
  z-index: 3;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.feature-image:hover img {
  transform: scale(1.04);
}

.feature-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.feature-text p {
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-2);
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--line);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✦';
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ===== Stats Bar ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}

.stat-item {
  background: var(--paper);
  padding: 34px 18px;
  border-radius: 22px 6px 22px 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px) rotate(-0.6deg);
  box-shadow: var(--shadow-md);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.1;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 10%, #FF8A50 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--ink-2);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ===== Content Wall ===== */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.content-wall-item {
  background: var(--paper);
  border-radius: 22px 6px 22px 6px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.content-wall-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(46, 196, 182, 0.05));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 196, 182, 0.3);
}

.content-wall-item:hover::after {
  opacity: 1;
}

.content-wall-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.content-wall-item:hover img {
  transform: scale(1.06);
}

.content-wall-body {
  padding: 20px 24px 24px;
}

.content-wall-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.content-wall-body p {
  font-size: 0.86rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.content-wall-body .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary-dark);
  background: rgba(46, 196, 182, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px 6px 18px 6px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.faq-item::before {
  content: '';
  display: block;
  height: 3px;
  margin: 0 24px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(244, 87, 60, 0.28);
}

.faq-item.open {
  border-color: rgba(244, 87, 60, 0.4);
  box-shadow: 0 8px 28px rgba(244, 87, 60, 0.08);
}

.faq-item.open::before {
  opacity: 1;
}

.faq-item .faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--primary);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  color: var(--ink-2);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeInDown 0.35s var(--ease);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A50 55%, var(--accent) 120%);
  padding: 68px 48px;
  text-align: center;
  border-radius: 32px 10px 32px 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(244, 87, 60, 0.28);
}

/* Manga speed lines from center */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg 4deg,
    rgba(255, 255, 255, 0.06) 4deg 6deg,
    transparent 6deg 15deg,
    rgba(255, 255, 255, 0.04) 15deg 17deg,
    transparent 17deg 30deg
  );
  animation: windmill-spin 60s linear infinite;
  pointer-events: none;
}

/* Halftone dots overlay */
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.cta-banner .btn-primary::before {
  background: linear-gradient(100deg, transparent, rgba(244, 87, 60, 0.1), transparent);
}

/* ===== Footer ===== */
.site-footer {
  background: #F2EDE6;
  padding: 64px 0 28px;
  color: var(--ink-2);
  position: relative;
  border-top: 1px solid var(--line);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
    var(--primary) 0%,
    var(--accent) 25%,
    var(--secondary) 50%,
    var(--accent) 75%,
    var(--primary) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 5s ease infinite;
}

.site-footer::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(244, 87, 60, 0.05) 0deg 18deg,
    transparent 18deg 36deg
  );
  border-radius: 50%;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 260px;
  color: var(--ink-2);
}

.footer-col h4,
.footer-col h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 4px 0;
  transition: all 0.22s ease;
  position: relative;
}

.footer-col a::before {
  content: '→';
  position: absolute;
  left: -18px;
  opacity: 0;
  transition: left 0.25s ease, opacity 0.25s ease;
  color: var(--primary);
  font-weight: 700;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-col a:hover::before {
  left: -14px;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--ink-3);
  position: relative;
  z-index: 2;
}

.footer-bottom a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ===== Utility Classes ===== */
.text-accent {
  color: var(--primary);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--ink-2);
  line-height: 1.75;
  font-size: 0.96rem;
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
  }

  .hero::before {
    width: 400px;
    height: 400px;
    right: -100px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  }

  .cta-banner {
    padding: 56px 36px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-h);
    left: 0;
    width: 100%;
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 24px 20px;
    border-bottom: 2px solid var(--line);
    box-shadow: 0 16px 32px rgba(204, 152, 104, 0.16);
    gap: 0;
  }

  .main-nav.open a {
    padding: 14px 6px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(234, 223, 211, 0.5);
  }

  .main-nav.open a:last-child {
    border-bottom: none;
  }

  .main-nav.open a::after {
    display: none;
  }

  .main-nav.open .nav-cta {
    margin-top: 12px;
    text-align: center;
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 40px) 0 64px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero::after {
    -webkit-mask-image: radial-gradient(circle at 50% 80%, black 0%, transparent 70%);
    mask-image: radial-gradient(circle at 50% 80%, black 0%, transparent 70%);
  }

  .hero::before {
    width: 320px;
    height: 320px;
    right: -60px;
    top: auto;
    bottom: -60px;
  }

  .hero-image {
    max-width: 520px;
    margin: 0 auto;
    transform: rotate(0.8deg);
  }

  .hero-image img {
    min-height: 260px;
  }

  .cta-banner {
    padding: 48px 28px;
    border-radius: 24px 8px 24px 8px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .cta-banner .btn-primary {
    padding: 12px 28px;
  }

  .site-footer::after {
    display: none;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-title::after {
    width: 36px;
    height: 3px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-item {
    padding: 24px 12px;
  }

  .cta-banner {
    padding: 40px 20px;
    border-radius: 20px 6px 20px 6px;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }

  .cta-banner p {
    font-size: 0.9rem;
  }

  .hero-image {
    transform: rotate(0deg);
  }

  .header-inner {
    padding: 0 16px;
  }

  .logo {
    font-size: 1.05rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .main-nav.open {
    padding: 12px 16px 16px;
  }

  .category-card {
    padding: 24px 20px;
  }

  .content-wall-item img {
    height: 170px;
  }

  .feature-image {
    border-radius: 20px 6px 20px 6px;
  }

  .faq-item .faq-question {
    padding: 16px 18px;
    font-size: 0.92rem;
  }

  .faq-item .faq-answer {
    padding: 0 18px 16px;
    font-size: 0.88rem;
  }

  .footer-bottom {
    font-size: 0.78rem;
    line-height: 1.6;
  }
}

/* ===== Print ===== */
@media print {
  .site-header,
  .menu-toggle,
  .hero-buttons,
  .nav-cta {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .section {
    padding: 32px 0;
  }
}