/* ============================================
   校花 - 青春影视传媒社区 原创样式
   品牌色系：玫瑰粉 + 紫罗兰
   ============================================ */

/* CSS Variables */
:root {
  --q9o-primary: #E8457C;
  --q9o-primary-light: #FF6B9D;
  --q9o-accent: #7C3AED;
  --q9o-accent-light: #A78BFA;
  --q9o-dark: #1A1A2E;
  --q9o-dark-soft: #2D2D3F;
  --q9o-light: #FFF5F8;
  --q9o-white: #FFFFFF;
  --q9o-text: #2D2D3F;
  --q9o-text-secondary: #6B7280;
  --q9o-border: #F3E8FF;
  --q9o-gradient: linear-gradient(135deg, #E8457C 0%, #7C3AED 100%);
  --q9o-gradient-soft: linear-gradient(135deg, #FFF5F8 0%, #F3E8FF 100%);
  --q9o-shadow: 0 4px 24px rgba(232,69,124,0.10);
  --q9o-shadow-lg: 0 8px 40px rgba(124,58,237,0.12);
  --q9o-radius: 12px;
  --q9o-radius-lg: 20px;
  --q9o-transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--q9o-text);
  background: var(--q9o-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--q9o-primary); text-decoration: none; transition: var(--q9o-transition); }
a:hover { color: var(--q9o-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; color: var(--q9o-dark); }

/* Container */
.q9o-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.q9o-section { padding: 60px 0; }
.q9o-section-alt { background: var(--q9o-gradient-soft); }

/* Section Title */
.q9o-section-title {
  text-align: center;
  margin-bottom: 48px;
}
.q9o-section-title h2 {
  font-size: 2rem;
  background: var(--q9o-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 12px;
}
.q9o-section-title p {
  color: var(--q9o-text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============ Header ============ */
.q9o-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--q9o-border);
  transition: var(--q9o-transition);
}
.q9o-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.q9o-logo { display: flex; align-items: center; gap: 10px; }
.q9o-logo img { height: 42px; width: auto; }
.q9o-logo span { font-size: 1.4rem; font-weight: 800; background: var(--q9o-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Navigation */
.q9o-nav { display: flex; align-items: center; gap: 4px; }
.q9o-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--q9o-text);
  border-radius: 8px;
  transition: var(--q9o-transition);
  white-space: nowrap;
}
.q9o-nav a:hover, .q9o-nav a.active {
  color: var(--q9o-primary);
  background: rgba(232,69,124,0.06);
}

/* Mobile Menu Toggle */
.q9o-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.q9o-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--q9o-dark);
  border-radius: 2px;
  transition: var(--q9o-transition);
}

/* Search Bar */
.q9o-search-bar {
  background: var(--q9o-gradient-soft);
  padding: 16px 0;
  border-bottom: 1px solid var(--q9o-border);
}
.q9o-search-form {
  display: flex;
  max-width: 640px;
  margin: 0 auto;
  gap: 8px;
}
.q9o-search-form input {
  flex: 1;
  padding: 10px 20px;
  border: 2px solid var(--q9o-border);
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition: var(--q9o-transition);
  background: var(--q9o-white);
}
.q9o-search-form input:focus { border-color: var(--q9o-primary); box-shadow: 0 0 0 3px rgba(232,69,124,0.1); }
.q9o-search-form button {
  padding: 10px 28px;
  background: var(--q9o-gradient);
  color: var(--q9o-white);
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--q9o-transition);
  white-space: nowrap;
}
.q9o-search-form button:hover { transform: translateY(-1px); box-shadow: var(--q9o-shadow); }

/* ============ Hero ============ */
.q9o-hero {
  position: relative;
  overflow: hidden;
  height: 520px;
  background: var(--q9o-dark);
}
.q9o-hero-slides { position: relative; width: 100%; height: 100%; }
.q9o-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.q9o-hero-slide.active { opacity: 1; }
.q9o-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.q9o-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 60px 40px;
}
.q9o-hero-content { max-width: 700px; color: var(--q9o-white); }
.q9o-hero-content h1 { font-size: 2.6rem; margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.q9o-hero-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 24px; line-height: 1.8; }
.q9o-hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.q9o-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--q9o-transition);
}
.q9o-hero-dot.active { background: var(--q9o-primary); width: 28px; border-radius: 5px; }

/* ============ Buttons ============ */
.q9o-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--q9o-transition);
  border: none;
  text-align: center;
}
.q9o-btn-primary { background: var(--q9o-gradient); color: var(--q9o-white); }
.q9o-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--q9o-shadow-lg); color: var(--q9o-white); }
.q9o-btn-outline { border: 2px solid var(--q9o-primary); color: var(--q9o-primary); background: transparent; }
.q9o-btn-outline:hover { background: var(--q9o-primary); color: var(--q9o-white); }
.q9o-btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ============ Video Card ============ */
.q9o-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.q9o-video-card {
  border-radius: var(--q9o-radius);
  overflow: hidden;
  background: var(--q9o-white);
  box-shadow: var(--q9o-shadow);
  transition: var(--q9o-transition);
  cursor: pointer;
}
.q9o-video-card:hover { transform: translateY(-6px); box-shadow: var(--q9o-shadow-lg); }
.q9o-video-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.q9o-video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--q9o-transition); }
.q9o-video-card:hover .q9o-video-thumb img { transform: scale(1.05); }
.q9o-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,26,46,0.4);
  opacity: 0;
  transition: var(--q9o-transition);
}
.q9o-video-card:hover .q9o-video-play { opacity: 1; }
.q9o-video-play-icon {
  width: 56px;
  height: 56px;
  background: var(--q9o-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,69,124,0.4);
}
.q9o-video-play-icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}
.q9o-video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
}
.q9o-video-info { padding: 14px; }
.q9o-video-info h4 { font-size: 0.95rem; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.q9o-video-meta { display: flex; gap: 12px; font-size: 0.8rem; color: var(--q9o-text-secondary); flex-wrap: wrap; }
.q9o-video-meta span { display: flex; align-items: center; gap: 4px; }
.q9o-video-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.q9o-tag {
  padding: 3px 10px;
  background: var(--q9o-gradient-soft);
  color: var(--q9o-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ============ Feature Grid ============ */
.q9o-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.q9o-feature-card {
  padding: 32px 24px;
  border-radius: var(--q9o-radius-lg);
  background: var(--q9o-white);
  border: 1px solid var(--q9o-border);
  text-align: center;
  transition: var(--q9o-transition);
}
.q9o-feature-card:hover { border-color: var(--q9o-primary-light); box-shadow: var(--q9o-shadow); transform: translateY(-4px); }
.q9o-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--q9o-gradient-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.q9o-feature-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.q9o-feature-card p { font-size: 0.9rem; color: var(--q9o-text-secondary); }

/* ============ Expert Card ============ */
.q9o-expert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.q9o-expert-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--q9o-radius-lg);
  background: var(--q9o-white);
  border: 1px solid var(--q9o-border);
  transition: var(--q9o-transition);
}
.q9o-expert-card:hover { box-shadow: var(--q9o-shadow-lg); transform: translateY(-4px); }
.q9o-expert-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--q9o-primary-light);
}
.q9o-expert-avatar img { width: 100%; height: 100%; object-fit: cover; }
.q9o-expert-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.q9o-expert-card .q9o-expert-role { color: var(--q9o-primary); font-size: 0.85rem; margin-bottom: 10px; }
.q9o-expert-card p { font-size: 0.85rem; color: var(--q9o-text-secondary); margin-bottom: 14px; }
.q9o-expert-actions { display: flex; gap: 8px; justify-content: center; }

/* ============ Partner Logos ============ */
.q9o-partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  align-items: center;
}
.q9o-partner-item {
  padding: 16px 24px;
  background: var(--q9o-white);
  border-radius: var(--q9o-radius);
  border: 1px solid var(--q9o-border);
  font-size: 1rem;
  font-weight: 600;
  color: var(--q9o-text-secondary);
  transition: var(--q9o-transition);
}
.q9o-partner-item:hover { border-color: var(--q9o-primary-light); color: var(--q9o-primary); box-shadow: var(--q9o-shadow); }

/* ============ FAQ ============ */
.q9o-faq-list { max-width: 800px; margin: 0 auto; }
.q9o-faq-item {
  border: 1px solid var(--q9o-border);
  border-radius: var(--q9o-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--q9o-transition);
}
.q9o-faq-item:hover { border-color: var(--q9o-primary-light); }
.q9o-faq-question {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--q9o-white);
  transition: var(--q9o-transition);
}
.q9o-faq-question:hover { background: var(--q9o-light); }
.q9o-faq-question::after { content: '+'; font-size: 1.4rem; color: var(--q9o-primary); transition: var(--q9o-transition); }
.q9o-faq-item.open .q9o-faq-question::after { content: '-'; }
.q9o-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.q9o-faq-item.open .q9o-faq-answer { max-height: 300px; }
.q9o-faq-answer p { padding: 0 24px 18px; color: var(--q9o-text-secondary); font-size: 0.95rem; line-height: 1.8; }

/* ============ Reviews ============ */
.q9o-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.q9o-review-card {
  padding: 24px;
  border-radius: var(--q9o-radius-lg);
  background: var(--q9o-white);
  border: 1px solid var(--q9o-border);
  transition: var(--q9o-transition);
}
.q9o-review-card:hover { box-shadow: var(--q9o-shadow); }
.q9o-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.q9o-review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--q9o-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}
.q9o-review-name { font-weight: 600; font-size: 0.95rem; }
.q9o-review-stars { color: #FBBF24; font-size: 0.85rem; }
.q9o-review-text { font-size: 0.9rem; color: var(--q9o-text-secondary); line-height: 1.8; }
.q9o-review-date { font-size: 0.8rem; color: #9CA3AF; margin-top: 10px; }

/* ============ Contact ============ */
.q9o-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}
.q9o-contact-info { display: flex; flex-direction: column; gap: 20px; }
.q9o-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.q9o-contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--q9o-gradient-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.q9o-contact-item h5 { font-size: 0.95rem; margin-bottom: 4px; }
.q9o-contact-item p { font-size: 0.85rem; color: var(--q9o-text-secondary); }
.q9o-qrcode-group { display: flex; gap: 24px; justify-content: center; }
.q9o-qrcode-item { text-align: center; }
.q9o-qrcode-item img { width: 140px; height: 140px; border-radius: var(--q9o-radius); margin-bottom: 8px; }
.q9o-qrcode-item p { font-size: 0.85rem; color: var(--q9o-text-secondary); }

/* ============ Social Share ============ */
.q9o-share-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 20px 0;
}
.q9o-share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--q9o-transition);
  cursor: pointer;
}
.q9o-share-btn:hover { transform: translateY(-3px); box-shadow: var(--q9o-shadow); }
.q9o-share-wechat { background: #07C160; }
.q9o-share-weibo { background: #E6162D; }
.q9o-share-douyin { background: #161823; }
.q9o-share-bilibili { background: #00A1D6; }

/* ============ Footer ============ */
.q9o-footer {
  background: var(--q9o-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 24px;
}
.q9o-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.q9o-footer-brand .q9o-logo { margin-bottom: 16px; }
.q9o-footer-brand .q9o-logo span { font-size: 1.3rem; }
.q9o-footer-brand p { font-size: 0.85rem; line-height: 1.8; }
.q9o-footer h5 { color: var(--q9o-white); font-size: 1rem; margin-bottom: 16px; }
.q9o-footer-links a { display: block; color: rgba(255,255,255,0.6); font-size: 0.85rem; padding: 4px 0; }
.q9o-footer-links a:hover { color: var(--q9o-primary-light); }
.q9o-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}
.q9o-footer-bottom a { color: var(--q9o-primary-light); }

/* ============ Breadcrumb ============ */
.q9o-breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--q9o-text-secondary);
  border-bottom: 1px solid var(--q9o-border);
}
.q9o-breadcrumb a { color: var(--q9o-primary); }
.q9o-breadcrumb span { margin: 0 8px; }

/* ============ How-To Guide ============ */
.q9o-howto-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.q9o-howto-step {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--q9o-radius-lg);
  background: var(--q9o-white);
  border: 1px solid var(--q9o-border);
  position: relative;
  counter-increment: step;
}
.q9o-howto-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--q9o-gradient);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.q9o-howto-step h4 { font-size: 1rem; margin-bottom: 8px; }
.q9o-howto-step p { font-size: 0.85rem; color: var(--q9o-text-secondary); }

/* ============ Community Features ============ */
.q9o-community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.q9o-community-card {
  padding: 24px;
  border-radius: var(--q9o-radius-lg);
  background: var(--q9o-white);
  border: 1px solid var(--q9o-border);
  text-align: center;
  transition: var(--q9o-transition);
}
.q9o-community-card:hover { border-color: var(--q9o-accent-light); box-shadow: var(--q9o-shadow); transform: translateY(-3px); }
.q9o-community-icon { font-size: 2.2rem; margin-bottom: 14px; }
.q9o-community-card h4 { font-size: 1rem; margin-bottom: 8px; }
.q9o-community-card p { font-size: 0.85rem; color: var(--q9o-text-secondary); }

/* ============ EEAT Bar ============ */
.q9o-eeat-bar {
  background: var(--q9o-gradient-soft);
  padding: 14px 0;
  border-bottom: 1px solid var(--q9o-border);
  font-size: 0.85rem;
  color: var(--q9o-text-secondary);
}
.q9o-eeat-bar p { margin: 0; line-height: 1.6; }
.q9o-eeat-bar strong { color: var(--q9o-primary); }
.q9o-eeat-bar a { color: var(--q9o-accent); text-decoration: underline; }

/* ============ Tag Cloud ============ */
.q9o-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.q9o-tag-cloud .q9o-tag {
  padding: 5px 14px;
  font-size: 0.82rem;
}

/* ============ Feature Grid 4-col ============ */
.q9o-feature-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .q9o-feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .q9o-feature-grid-4 { grid-template-columns: 1fr; }
}

/* ============ Inner Page ============ */
.q9o-page-hero {
  background: var(--q9o-gradient);
  padding: 48px 0;
  color: var(--q9o-white);
  text-align: center;
}
.q9o-page-hero h1 { font-size: 2rem; margin-bottom: 10px; color: var(--q9o-white); }
.q9o-page-hero p { opacity: 0.9; font-size: 1rem; }
.q9o-content-section { padding: 40px 0; }
.q9o-content-section h2 { font-size: 1.6rem; margin-bottom: 20px; color: var(--q9o-dark); }
.q9o-content-section h3 { font-size: 1.3rem; margin-bottom: 14px; color: var(--q9o-dark-soft); }
.q9o-content-section p { margin-bottom: 16px; color: var(--q9o-text-secondary); line-height: 1.8; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .q9o-video-grid { grid-template-columns: repeat(3, 1fr); }
  .q9o-expert-grid { grid-template-columns: repeat(2, 1fr); }
  .q9o-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .q9o-howto-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .q9o-nav { 
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--q9o-white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--q9o-shadow-lg);
    border-top: 1px solid var(--q9o-border);
  }
  .q9o-nav.open { display: flex; }
  .q9o-menu-toggle { display: flex; }
  .q9o-hero { height: 380px; }
  .q9o-hero-content h1 { font-size: 1.8rem; }
  .q9o-hero-overlay { padding: 30px 20px; }
  .q9o-video-grid { grid-template-columns: repeat(2, 1fr); }
  .q9o-feature-grid { grid-template-columns: 1fr; }
  .q9o-expert-grid { grid-template-columns: repeat(2, 1fr); }
  .q9o-review-grid { grid-template-columns: 1fr; }
  .q9o-contact-grid { grid-template-columns: 1fr; }
  .q9o-footer-grid { grid-template-columns: 1fr; }
  .q9o-howto-steps { grid-template-columns: 1fr; }
  .q9o-community-grid { grid-template-columns: 1fr; }
  .q9o-section { padding: 40px 0; }
  .q9o-section-title h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .q9o-video-grid { grid-template-columns: 1fr; }
  .q9o-expert-grid { grid-template-columns: 1fr; }
  .q9o-hero { height: 300px; }
  .q9o-hero-content h1 { font-size: 1.4rem; }
}

/* ============ Lazy Load ============ */
img.loaded { opacity: 1; }
.q9o-animate-on-scroll { transition: opacity 0.6s ease, transform 0.6s ease; }
.q9o-animate-on-scroll.q9o-animate { opacity: 1; transform: translateY(0); }

/* ============ Animations ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.q9o-animate { animation: fadeInUp 0.6s ease forwards; }

/* ============ Data Stats ============ */
.q9o-stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 32px 0;
  flex-wrap: wrap;
}
.q9o-stat-item { text-align: center; }
.q9o-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--q9o-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.q9o-stat-label {
  font-size: 0.85rem;
  color: var(--q9o-text-secondary);
  margin-top: 4px;
}

/* ============ Print Styles ============ */
@media print {
  .q9o-header, .q9o-footer, .q9o-search-bar { display: none; }
  body { color: #000; }
}
