/* ============================================================
   PRISM DAYLIGHT — 彩虹之下 · 同路同心
   Awwwards-style Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-x: hidden;
  background: #FAF6F1;
  color: #2D2B3A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom selection */
::selection {
  background: linear-gradient(135deg, #FF6B9D, #7C5CE0);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FAF6F1;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF6B9D, #7C5CE0);
  border-radius: 8px;
}

/* ---------- Ambient Organic Blobs ---------- */
body::before {
  content: '';
  position: fixed;
  top: -15%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 157, 0.10), transparent 62%);
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
  animation: blobFloat 18s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  right: -12%;
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle at 60% 60%, rgba(124, 92, 224, 0.09), transparent 60%);
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
  animation: blobFloat 24s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-30px, 20px) scale(1.06); }
  100% { transform: translate(24px, -18px) scale(0.96); }
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, #FFF3EE 0%, #FAF6F1 100%);
}

.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.15), transparent);
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 107, 157, 0.10);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.35rem;
  text-decoration: none;
  color: #2D2B3A;
  letter-spacing: -0.03em;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.82;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 20%;
  background: linear-gradient(135deg, #FF6B9D, #FFB347, #00B8A9, #7C5CE0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 157, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: rotate(10deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-icon {
  transform: rotate(0deg);
}

.logo-text {
  background: linear-gradient(120deg, #2D2B3A 40%, #7C5CE0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: #5D4C6A;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FF6B9D, #7C5CE0);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.main-nav a:hover,
.main-nav a.active {
  color: #FF4D88;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FF6B9D, #7C5CE0);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 18px rgba(255, 107, 157, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(124, 92, 224, 0.4);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 107, 157, 0.25);
  background: rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  color: #FF6B9D;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 107, 157, 0.08);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 84vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 70% 55% at 18% 25%, rgba(255, 179, 71, 0.06), transparent 60%),
    radial-gradient(ellipse 55% 45% at 88% 60%, rgba(0, 184, 169, 0.06), transparent 55%),
    radial-gradient(ellipse 45% 35% at 55% 20%, rgba(255, 107, 157, 0.05), transparent 50%);
}

.hero::before {
  content: '🌈';
  position: absolute;
  font-size: 7rem;
  opacity: 0.06;
  top: 14%;
  right: 8%;
  transform: rotate(15deg);
  pointer-events: none;
}

.hero-content {
  max-width: 740px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 20px;
  border-radius: 50px;
  background: rgba(255, 107, 157, 0.08);
  color: #E84B7A;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 107, 157, 0.14);
  backdrop-filter: blur(8px);
}

.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B9D, #7C5CE0);
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.15);
}

.hero h1 {
  font-size: 3.6rem;
  line-height: 1.12;
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #2D2B3A;
}

.hero h1 .gradient-text {
  background: linear-gradient(120deg, #FF4D88 0%, #7C5CE0 55%, #00A88E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 6px;
}

.hero p {
  font-size: 1.16rem;
  color: #6B5B7B;
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  letter-spacing: 0.015em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #FF4D88, #7C5CE0);
  color: #fff;
  box-shadow: 0 6px 22px rgba(255, 77, 136, 0.38);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(124, 92, 224, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(124, 92, 224, 0.3);
  color: #6C5CE7;
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: #6C5CE7;
  background: rgba(124, 92, 224, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(124, 92, 224, 0.12);
}

/* ---------- Section Label / Title ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #E84B7A;
  position: relative;
  padding-left: 36px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2.5px;
  background: linear-gradient(90deg, #FF6B9D, #FFB347, #7C5CE0);
  border-radius: 4px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #2D2B3A;
}

.section-title .text-accent {
  background: linear-gradient(135deg, #FF4D88, #7C5CE0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  max-width: 620px;
  color: #6B5B7B;
  opacity: 0.7;
  margin-bottom: 48px;
  line-height: 1.75;
  font-size: 1.05rem;
  font-weight: 400;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.category-card {
  border-radius: 22px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 107, 157, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-color, #FF6B9D), var(--card-secondary, #FFB347), transparent);
  border-radius: 22px 22px 0 0;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--card-color, #FF6B9D);
  opacity: 0.04;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.category-card:nth-child(1) { --card-color: #FF6B9D; --card-secondary: #FFB347; }
.category-card:nth-child(2) { --card-color: #7C5CE0; --card-secondary: #00B8A9; }
.category-card:nth-child(3) { --card-color: #00B8A9; --card-secondary: #FFB347; }
.category-card:nth-child(4) { --card-color: #FFB347; --card-secondary: #FF6B9D; }

.category-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(124, 92, 224, 0.12), 0 4px 12px rgba(255, 107, 157, 0.06);
  border-color: rgba(255, 107, 157, 0.18);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover::after {
  transform: scale(1.4);
  opacity: 0.08;
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--card-color, #FF6B9D), var(--card-secondary, #FFB347));
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2D2B3A;
  letter-spacing: -0.01em;
}

.category-card p {
  font-size: 0.9rem;
  color: #8B7B93;
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-link {
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  color: #E84B7A;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.card-link:hover {
  gap: 12px;
  color: #7C5CE0;
}

/* ---------- Feature Block ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(124, 92, 224, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: rotate(-1.5deg);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-image:hover {
  transform: rotate(0deg);
}

.feature-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 77, 136, 0.10), rgba(124, 92, 224, 0.10));
  pointer-events: none;
  z-index: 1;
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 2;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text {
  padding: 8px 0;
}

.feature-list {
  list-style: none;
  margin-top: 30px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #5D4C6A;
  border-bottom: 1px dashed rgba(124, 92, 224, 0.14);
  transition: padding-left 0.3s ease;
}

.feature-list li:hover {
  padding-left: 6px;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✦';
  font-weight: 700;
  color: #7C5CE0;
  font-size: 0.9rem;
  background: rgba(124, 92, 224, 0.10);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 36px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 107, 157, 0.10);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF6B9D, transparent);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124, 92, 224, 0.12);
}

.stat-item:hover::before {
  opacity: 1;
  width: 70%;
}

.stat-number {
  font-size: 2.7rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF4D88, #7C5CE0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.92rem;
  color: #8B7B93;
  opacity: 0.75;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---------- 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: 1px solid rgba(255, 107, 157, 0.10);
  background: rgba(255, 255, 255, 0.85);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  position: relative;
}

.content-wall-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.content-wall-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(255, 107, 157, 0.15);
}

.content-wall-item:hover::after {
  opacity: 1;
}

.content-wall-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.content-wall-item:hover img {
  transform: scale(1.06);
}

.content-wall-body {
  padding: 24px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
}

.content-wall-body h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #2D2B3A;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.content-wall-item:hover .content-wall-body h3 {
  color: #E84B7A;
}

.content-wall-body p {
  font-size: 0.88rem;
  color: #8B7B93;
  line-height: 1.6;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(124, 92, 224, 0.12);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 107, 157, 0.30);
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.08);
}

.faq-item .faq-question {
  padding: 22px 28px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #2D2B3A;
  transition: color 0.3s ease;
}

.faq-item .faq-question::after {
  content: '＋';
  font-size: 1.3rem;
  font-weight: 400;
  color: #FF6B9D;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item:hover .faq-question::after {
  color: #7C5CE0;
}

.faq-item.open .faq-question::after {
  transform: rotate(135deg);
  color: #7C5CE0;
}

.faq-item.open .faq-question {
  color: #E84B7A;
}

.faq-item .faq-answer {
  padding: 0 28px 22px;
  display: none;
  color: #6B5B7B;
  opacity: 0.75;
  line-height: 1.75;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeSlideDown 0.4s ease both;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 68px 48px;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(120deg, #FF4D88, #7C5CE0, #00A88E);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(124, 92, 224, 0.30);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.07);
  transform: rotate(25deg);
  pointer-events: none;
}

.cta-banner::after {
  content: '🌈';
  position: absolute;
  bottom: -15px;
  right: 50px;
  font-size: 4.5rem;
  opacity: 0.25;
  transform: rotate(-8deg);
  pointer-events: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-banner .btn-primary {
  background: #fff;
  color: #7C5CE0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 76px 0 32px;
  background: #F0EAFA;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B9D, #FFB347, #00B8A9, #7C5CE0, #FF6B9D);
  background-size: 300% 100%;
  animation: rainbowShimmer 8s linear infinite;
}

@keyframes rainbowShimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.93rem;
  color: #6B5B7B;
  line-height: 1.8;
  max-width: 300px;
}

.footer-brand .tagline {
  font-size: 0.85rem;
  color: #9B8FAB;
  letter-spacing: 0.05em;
  margin-top: 12px;
  font-style: italic;
}

.footer-col h4 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #2D2B3A;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #FF6B9D, #7C5CE0);
  border-radius: 4px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  padding: 5px 0;
}

.footer-col ul a {
  text-decoration: none;
  color: #8B7B93;
  font-size: 0.89rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-col ul a:hover {
  color: #E84B7A;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(124, 92, 224, 0.10);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #9B8FAB;
}

.footer-bottom a {
  color: #E84B7A;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ---------- Utilities ---------- */
.text-accent {
  background: linear-gradient(120deg, #FF4D88, #7C5CE0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.seo-description {
  max-width: 620px;
  margin: 0 auto 48px;
  color: #6B5B7B;
  opacity: 0.75;
  line-height: 1.75;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Additional Enhancements ---------- */

/* Gradient text for section titles when needed */
.gradient-headline {
  background: linear-gradient(120deg, #2D2B3A 30%, #7C5CE0 70%, #E84B7A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Rainbow divider element */
.rainbow-bar {
  width: 64px;
  height: 4px;
  border-radius: 8px;
  background: linear-gradient(90deg, #FF6B9D, #FFB347, #00B8A9, #7C5CE0);
  margin: 20px auto 0;
}

/* Tag chips for community cards */
.tag-chip {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(255, 107, 157, 0.08);
  border: 1px solid rgba(255, 107, 157, 0.14);
  color: #E84B7A;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 4px 4px 4px 0;
  letter-spacing: 0.04em;
}

.tag-chip.purple {
  background: rgba(124, 92, 224, 0.08);
  border-color: rgba(124, 92, 224, 0.14);
  color: #6C5CE7;
}

.tag-chip.teal {
  background: rgba(0, 184, 169, 0.08);
  border-color: rgba(0, 184, 169, 0.14);
  color: #00A88E;
}

.tag-chip.amber {
  background: rgba(255, 179, 71, 0.10);
  border-color: rgba(255, 179, 71, 0.2);
  color: #E08A00;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .feature-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .feature-block { grid-template-columns: 1fr; gap: 44px; }
  .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;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(250, 246, 241, 0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 14px;
    box-shadow: 0 20px 48px rgba(61, 44, 74, 0.15);
    border-bottom: 1px solid rgba(255, 107, 157, 0.12);
  }

  .main-nav.open a {
    padding: 12px 16px;
    display: block;
    text-align: center;
    font-size: 1.02rem;
    border-radius: 12px;
    border: none;
    background: transparent;
  }

  .main-nav.open a::after {
    display: none;
  }

  .main-nav.open a:hover {
    background: rgba(255, 107, 157, 0.06);
  }

  .main-nav.open .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-image {
    transform: rotate(0deg);
  }

  .section {
    padding: 72px 0;
  }

  .cta-banner {
    padding: 48px 28px;
    border-radius: 22px;
  }

  .cta-banner h2 {
    font-size: 1.7rem;
  }
}

@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;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    padding: 14px 24px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .cta-banner::after {
    font-size: 3rem;
    right: 20px;
  }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}