```css
/* =========================================================
   玩美×玩媚动漫 — Neo-Pop Manga Design System
   玩美成真，玩媚由我 · wanmeiwan.com.cn
   =========================================================
   Palette:
   --primary  : #FF5C8A  Sakura Pink
   --secondary: #7C5CFF  Violet Dream
   --tertiary : #00C9B7  Mint Pop
   --accent   : #FFC93C  Marigold
   Background : Warm Cream + Halftone Grain
   ========================================================= */

:root {
  color-scheme: light;
  --primary: #FF5C8A;
  --primary-soft: #FFE0E8;
  --secondary: #7C5CFF;
  --secondary-soft: #EEE8FF;
  --tertiary: #00C9B7;
  --tertiary-soft: #D6F5F2;
  --accent: #FFC93C;
  --accent-soft: #FFF4D6;
  --bg-cream: #FFF9F2;
  --bg-white: #FFFFFF;
  --text-main: #3D3D4C;
  --text-muted: rgba(61, 61, 76, 0.65);
  --shadow-pink: 0 8px 30px rgba(255, 92, 138, 0.15);
  --shadow-purple: 0 8px 30px rgba(124, 92, 255, 0.12);
  --shadow-teal: 0 8px 30px rgba(0, 201, 183, 0.12);
  --radius-blob: 24px 24px 24px 6px;
  --radius-round: 16px;
  --transition-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============ 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', sans-serif;
  overflow-x: hidden;
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(61, 61, 76, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  color: var(--text-main);
  font-family: inherit;
  line-height: 1.3;
}

::selection {
  background: var(--primary);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 100px;
}

/* ============ Layout ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, #FFF4F7 0%, #F0F8FF 100%);
}

.section::after {
  content: '✦';
  position: absolute;
  top: 36px;
  right: 3%;
  font-size: 1.6rem;
  color: var(--secondary);
  opacity: 0.14;
  pointer-events: none;
  animation: rotateSlow 24s linear infinite;
}

/* ============ Header & Navigation ============ */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1280px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--text-main);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px 16px 16px 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(255, 92, 138, 0.35);
  transform: rotate(-6deg);
  transition: transform 0.4s var(--transition-spring);
}

.logo:hover .logo-icon {
  transform: rotate(6deg) scale(1.08);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  background: var(--bg-cream);
  border-radius: 100px;
  padding: 5px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 9px 18px;
  border-radius: 100px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(255, 92, 138, 0.14);
}

.nav-cta {
  padding: 9px 20px;
  border-radius: 100px;
  color: #fff !important;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(124, 92, 255, 0.4);
}

.menu-toggle {
  display: none;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  width: 44px;
  height: 44px;
  border-radius: 14px 14px 14px 4px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 14px rgba(255, 92, 138, 0.25);
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: #fff;
  border-radius: 4px;
}

/* ============ Hero ============ */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
}

.section.hero,
.hero {
  background:
    radial-gradient(ellipse at 85% 20%, rgba(255, 92, 138, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 85%, rgba(124, 92, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 50%, rgba(0, 201, 183, 0.05) 0%, transparent 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 12%;
  right: 6%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(255, 201, 60, 0.28) 2px, transparent 2.5px);
  background-size: 12px 12px;
  border-radius: 50%;
  animation: rotateSlow 60s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 3%;
  width: 120px;
  height: 120px;
  border: 3px dashed rgba(255, 92, 138, 0.18);
  border-radius: 50%;
  animation: rotateSlow 40s linear infinite;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 100px 100px 100px 4px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--accent-soft), var(--primary-soft));
  color: var(--primary);
  border: 1.5px solid rgba(255, 92, 138, 0.2);
  box-shadow: 0 4px 14px rgba(255, 92, 138, 0.08);
  animation: floatY 4s ease-in-out infinite;
}

.hero-eyebrow::before {
  content: '★';
  font-size: 0.85em;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 24px;
  letter-spacing: 1px;
  color: var(--text-main);
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.68;
  color: var(--text-main);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  max-width: 480px;
  min-width: 300px;
  border-radius: 36px 36px 36px 8px;
  overflow: hidden;
  box-shadow:
    16px 16px 0 var(--tertiary-soft),
    0 12px 40px rgba(124, 92, 255, 0.12);
  transform: rotate(2deg);
  transition: transform 0.5s var(--transition-spring), box-shadow 0.5s ease;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow:
    20px 20px 0 var(--accent-soft),
    0 16px 48px rgba(124, 92, 255, 0.18);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  transition: all 0.35s var(--transition-spring);
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 8px 24px rgba(255, 92, 138, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(124, 92, 255, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
}

/* ============ Section Label / Title ============ */
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding: 7px 18px;
  border-radius: 100px 100px 100px 0;
  background: var(--secondary-soft);
  color: var(--secondary);
  border: 1.5px solid rgba(124, 92, 255, 0.2);
  transform: rotate(-1.5deg);
}

.section-label::before {
  content: '✦';
  margin-right: 6px;
  font-size: 0.9em;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 16px;
  position: relative;
  z-index: 0;
  display: inline-block;
  line-height: 1.35;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 32%;
  background: rgba(255, 201, 60, 0.55);
  border-radius: 100px;
  z-index: -1;
}

.section-desc {
  max-width: 620px;
  opacity: 0.7;
  color: var(--text-main);
  margin-bottom: 48px;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ============ Cards Grid ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.category-card {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-blob);
  padding: 30px 28px;
  box-shadow: var(--shadow-purple);
  transition: all 0.35s var(--transition-spring);
  overflow: hidden;
  border: none;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--tertiary));
}

.category-card::after {
  content: '♥';
  position: absolute;
  bottom: 14px;
  right: 20px;
  font-size: 1.6rem;
  color: var(--primary-soft);
  opacity: 0;
  transform: scale(0.5) rotate(0deg);
  transition: all 0.4s var(--transition-spring);
}

.category-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--shadow-pink);
}

.category-card:hover::after {
  opacity: 1;
  transform: scale(1) rotate(10deg);
}

.category-card:first-child {
  grid-column: span 2;
}

.category-card:last-child {
  grid-column: span 2;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px 16px 16px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--primary-soft), var(--secondary-soft));
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 92, 138, 0.08);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--secondary);
  transition: gap 0.3s ease;
}

.card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.card-link:hover {
  gap: 12px;
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* ============ Features ============ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--bg-white);
  border-radius: 36px 36px 36px 8px;
  padding: 48px;
  box-shadow: 0 12px 40px rgba(124, 92, 255, 0.08);
  position: relative;
}

.feature-image {
  border-radius: 24px 24px 24px 4px;
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--tertiary-soft);
  transition: transform 0.4s var(--transition-spring);
}

.feature-block:hover .feature-image {
  transform: rotate(-1deg) scale(1.02);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

.feature-text {
  position: relative;
}

.feature-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 16px;
}

.feature-text > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  color: var(--text-main);
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  border-bottom: 1.5px dashed rgba(61, 61, 76, 0.08);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✓';
  font-weight: 900;
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 4px;
  background: linear-gradient(135deg, var(--tertiary), var(--secondary));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ============ Stats Bar ============ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  position: relative;
  background: var(--bg-white);
  padding: 32px 20px;
  border-radius: var(--radius-blob);
  box-shadow: 0 8px 24px rgba(0, 201, 183, 0.1);
  transition: all 0.35s var(--transition-spring);
  border: none;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tertiary);
  opacity: 0.5;
}

.stat-item:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: var(--shadow-teal);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.65;
  color: var(--text-main);
  margin-top: 10px;
  font-weight: 500;
}

/* ============ Content Wall ============ */
.content-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.content-wall-item {
  position: relative;
  background: var(--bg-white);
  border-radius: 24px 24px 24px 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(61, 61, 76, 0.06);
  transition: all 0.35s ease;
  border: none;
}

.content-wall-item::after {
  content: '✦';
  position: absolute;
  top: 12px;
  right: 16px;
  color: var(--accent);
  font-size: 1.3rem;
  opacity: 0;
  transform: scale(0.5) rotate(0deg);
  transition: all 0.35s var(--transition-spring);
}

.content-wall-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-purple);
}

.content-wall-item:hover::after {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

.content-wall-item:first-child {
  grid-column: span 2;
}

.content-wall-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.content-wall-item:hover img {
  transform: scale(1.05);
}

.content-wall-body {
  padding: 24px;
}

.content-wall-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.content-wall-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-round);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(61, 61, 76, 0.04);
  border: 1.5px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: var(--primary-soft);
  box-shadow: 0 8px 24px rgba(255, 92, 138, 0.08);
}

.faq-item.open {
  border-color: rgba(255, 92, 138, 0.2);
  box-shadow: 0 8px 32px rgba(255, 92, 138, 0.1);
}

.faq-item .faq-question,
.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-main);
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-question::after {
  content: '＋';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '−';
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============ CTA Banner ============ */
.cta-banner {
  position: relative;
  padding: 64px 48px;
  text-align: center;
  border-radius: 36px 36px 36px 8px;
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--secondary), var(--tertiary));
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(124, 92, 255, 0.25);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.1) 0px,
    rgba(255, 255, 255, 0.1) 10px,
    transparent 10px,
    transparent 20px
  );
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 18%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2.5px);
  background-size: 12px 12px;
}

.cta-banner > * {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-banner .btn-primary:hover {
  background: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* ============ Footer ============ */
.site-footer {
  background: linear-gradient(180deg, var(--bg-cream), #FFE8E0);
  padding: 64px 0 32px;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  margin-top: 40px;
  border-top: 2px dashed rgba(255, 92, 138, 0.15);
  position: relative;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.92rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-top: 6px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1.5px solid rgba(61, 61, 76, 0.08);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============ Utilities ============ */
.text-accent {
  background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 60%, var(--tertiary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-center {
  text-align: center;
}

.seo-description {
  max-width: 620px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* ============ Animations ============ */
@keyframes floatY {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@