/* =====================================================
   动漫大全yqzfb | 后宫岛动漫 — 漫游奇境，帧帧精彩
   Design System: "Wonderland Scrapbook Pop"
   Awwwards-inspired · Light & Playful · Kawaii Halftone
   ===================================================== */

:root {
  --cream: #FFF9F3;
  --coral: #FF5D5D;
  --mint: #2BCDB4;
  --sunny: #FFC93C;
  --berry: #C77DBA;
  --ink: #34313A;
  --peach: #FFE3D3;
  --sand: #F5EBE0;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 100px;
}

/* ---------- Reset & Base ---------- */
*, *::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(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(255, 93, 93, 0.2);
  color: var(--ink);
}

/* ---------- Core Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section:nth-child(even) {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 93, 93, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(43, 205, 180, 0.06) 0%, transparent 40%),
    var(--sand);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 249, 243, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(52, 49, 58, 0.06);
  box-shadow: 0 2px 30px rgba(52, 49, 58, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.3rem;
  text-decoration: none;
  color: inherit;
  letter-spacing: -0.5px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover {
  transform: scale(1.03) rotate(-0.5deg);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--coral), var(--sunny));
  box-shadow: 0 6px 16px rgba(255, 93, 93, 0.35);
  transform: rotate(-6deg);
  position: relative;
  transition: transform 0.25s ease;
}

.logo:hover .logo-icon {
  transform: rotate(0deg) scale(1.05);
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid var(--cream);
  animation: badge-pulse 2.5s ease-in-out infinite;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 2px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--coral), var(--sunny));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-nav a:hover {
  color: var(--coral);
}

.main-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  padding: 10px 24px !important;
  border-radius: var(--radius-pill) !important;
  color: #fff !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--coral), #FF8A5C);
  box-shadow: 0 6px 16px rgba(255, 93, 93, 0.35);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  color: #fff !important;
  transform: translateY(-2px) rotate(1deg);
  box-shadow: 0 10px 24px rgba(255, 93, 93, 0.45);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(52, 49, 58, 0.15);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-toggle::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 4px;
  display: block;
  box-shadow: 0 8px 0 var(--ink);
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  border-color: var(--coral);
  transform: scale(1.05);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 76px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 90%, rgba(255, 93, 93, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 15%, rgba(43, 205, 180, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 200, 60, 0.08) 0%, transparent 35%),
    linear-gradient(180deg, var(--cream) 0%, #FFE9E0 70%, var(--cream) 100%);
}

.hero::before {
  content: '✦';
  position: absolute;
  top: 15%;
  right: 12%;
  font-size: 2.8rem;
  color: var(--sunny);
  opacity: 0.45;
  animation: twinkle 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '· · ·';
  position: absolute;
  bottom: 28%;
  left: 5%;
  font-size: 3rem;
  letter-spacing: 8px;
  color: var(--coral);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  animation: float-slow 5s ease-in-out infinite;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--mint), #6DE6CE);
  color: #fff;
  box-shadow: 0 6px 16px rgba(43, 205, 180, 0.35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: float-slow 4s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(120deg, var(--ink) 30%, var(--coral) 50%, var(--berry) 70%, var(--ink) 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 8s ease infinite;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.72;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-image {
  border-radius: 20px;
  padding: 12px 12px 44px;
  background: #fff;
  box-shadow:
    0 24px 50px rgba(52, 49, 58, 0.12),
    0 4px 0 rgba(52, 49, 58, 0.04);
  position: relative;
  transform: rotate(2deg);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float-slow 6s ease-in-out infinite;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image::before {
  content: '✨ 帧帧精彩 ✨';
  position: absolute;
  top: 14px;
  right: -12px;
  background: var(--sunny);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(52, 49, 58, 0.12);
  z-index: 2;
  transform: rotate(3deg);
  letter-spacing: 0.5px;
}

.hero-image::after {
  content: '✦ 漫游奇境 ✦';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.55;
  letter-spacing: 3px;
  white-space: nowrap;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #FF8A5C);
  box-shadow: 0 6px 20px rgba(255, 93, 93, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03) rotate(1deg);
  box-shadow: 0 14px 32px rgba(255, 93, 93, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2.5px solid var(--mint);
  color: var(--mint);
}

.btn-outline:hover {
  background: var(--mint);
  color: #fff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 24px rgba(43, 205, 180, 0.35);
}

/* ---------- Section Labels & Titles ---------- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 93, 93, 0.08);
  color: var(--coral);
}

.section-label::before {
  content: '✦ ';
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--ink);
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--coral), var(--sunny));
  box-shadow: 0 2px 8px rgba(255, 93, 93, 0.25);
}

.section-desc {
  max-width: 600px;
  opacity: 0.7;
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 20px;
  padding: 30px 28px;
  background: #fff;
  border: 2px solid rgba(52, 49, 58, 0.06);
  border-top: 5px solid var(--coral);
  box-shadow: 0 4px 0 rgba(52, 49, 58, 0.03);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.35;
}

.category-card:nth-child(3n+1) {
  border-top-color: var(--coral);
}
.category-card:nth-child(3n+2) {
  border-top-color: var(--mint);
}
.category-card:nth-child(3n+3) {
  border-top-color: var(--sunny);
}

.category-card:nth-child(3n+1)::after {
  background: var(--coral);
}
.category-card:nth-child(3n+2)::after {
  background: var(--mint);
}
.category-card:nth-child(3n+3)::after {
  background: var(--sunny);
}

.category-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow:
    0 12px 0 rgba(52, 49, 58, 0.04),
    0 20px 40px rgba(255, 93, 93, 0.12);
  border-color: rgba(52, 49, 58, 0.1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  background: rgba(255, 93, 93, 0.08);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card:nth-child(3n+1) .card-icon {
  background: rgba(255, 93, 93, 0.08);
}
.category-card:nth-child(3n+2) .card-icon {
  background: rgba(43, 205, 180, 0.1);
}
.category-card:nth-child(3n+3) .card-icon {
  background: rgba(255, 200, 60, 0.14);
}

.category-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  transition: gap 0.25s ease;
}

.card-link:hover {
  gap: 12px;
}

/* ---------- Feature Block ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(52, 49, 58, 0.1),
    0 4px 0 rgba(52, 49, 58, 0.04);
  border: 5px solid #fff;
  position: relative;
  transform: rotate(-1deg);
  transition: transform 0.3s ease;
}

.feature-image:hover {
  transform: rotate(0deg) scale(1.01);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  position: relative;
}

.feature-text::before {
  content: '「';
  position: absolute;
  top: -24px;
  left: -20px;
  font-size: 5rem;
  font-weight: 300;
  color: var(--coral);
  opacity: 0.15;
  font-family: 'PingFang SC', sans-serif;
  pointer-events: none;
}

.feature-list {
  list-style: none;
  margin-top: 28px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.98rem;
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  font-size: 0.8rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), #6DE6CE);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(43, 205, 180, 0.3);
}

/* ---------- Stats Bar ---------- */
.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: 2px solid rgba(52, 49, 58, 0.05);
  background: #fff;
  position: relative;
  box-shadow: 0 4px 16px rgba(52, 49, 58, 0.04);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--coral), var(--sunny));
  opacity: 0.5;
}

.stat-item:hover {
  transform: translateY(-6px) rotate(0.8deg);
  box-shadow: 0 16px 32px rgba(255, 93, 93, 0.1);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--coral), var(--sunny));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.stat-item:nth-child(2) .stat-number {
  background: linear-gradient(135deg, var(--mint), #6DE6CE);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item:nth-child(3) .stat-number {
  background: linear-gradient(135deg, var(--berry), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item:nth-child(4) .stat-number {
  background: linear-gradient(135deg, var(--sunny), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.65;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ---------- Content Wall ---------- */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(52, 49, 58, 0.05);
  background: #fff;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.content-wall-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--sunny), var(--mint), var(--berry));
  opacity: 0.7;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.content-wall-item:hover::after {
  transform: scaleX(1);
}

.content-wall-item:hover {
  transform: translateY(-8px) rotate(0.5deg);
  box-shadow: 0 20px 40px rgba(255, 93, 93, 0.12);
}

.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.05);
}

.content-wall-body {
  padding: 22px 24px;
}

.content-wall-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
}

.content-wall-body p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid rgba(52, 49, 58, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: var(--mint);
  box-shadow: 0 8px 20px rgba(43, 205, 180, 0.08);
}

.faq-item .faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease;
}

.faq-item .faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--coral);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: '−';
  transform: rotate(180deg);
  color: var(--mint);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  display: none;
  opacity: 0.75;
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fade-slide-in 0.3s ease;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 76px 24px;
  text-align: center;
  border-radius: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, var(--coral) 0%, #FF8A5C 40%, var(--sunny) 100%);
  box-shadow: 0 24px 60px rgba(255, 93, 93, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.15);
}

.cta-banner::after {
  content: '✦ ✦ ✦';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  letter-spacing: 20px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  animation: twinkle 3s ease-in-out infinite;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  letter-spacing: -1px;
  font-weight: 900;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 20px rgba(52, 49, 58, 0.1);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--coral);
  box-shadow: 0 10px 30px rgba(52, 49, 58, 0.15);
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary::before {
  background: linear-gradient(to right, transparent, rgba(255, 93, 93, 0.15), transparent);
}

.cta-banner .btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(52, 49, 58, 0.25);
  color: var(--coral);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 64px 0 28px;
  background: #FFF0E8;
  border-top: 2px solid rgba(255, 93, 93, 0.08);
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--coral), var(--sunny));
  font-size: 1.1rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--ink);
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.65;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: all 0.2s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--coral);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 93, 93, 0.15);
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.65;
  color: var(--ink);
}

/* ---------- Utilities ---------- */
.text-accent {
  background: linear-gradient(120deg, var(--coral), var(--berry));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.text-center {
  text-align: center;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.seo-description {
  max-width: 640px;
  margin: 0 auto 48px;
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.8;
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ---------- Keyframes ---------- */
@keyframes float-slow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.9) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.15) rotate(15deg);
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(43, 205, 180, 0.4);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(43, 205, 180, 0);
  }
}

/* ---------- Accessibility ---------- */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--sunny);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--cream);
    padding: 24px;
    gap: 18px;
    border-bottom: 3px solid rgba(255, 93, 93, 0.15);
    box-shadow: 0 16px 40px rgba(52, 49, 58, 0.08);
  }

  .main-nav.open a {
    display: block;
    padding: 10px 0;
    font-size: 1.1rem;
  }

  .main-nav.open .nav-cta {
    text-align: center;
    padding: 12px 24px !important;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 64px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-image {
    margin-top: 48px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  .cards-grid,
  .content-wall,
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 56px 0;
  }

  .cta-banner {
    padding: 56px 20px;
    border-radius: 24px;
  }

  .stat-item {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .feature-block {
    gap: 32px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}