/* 首页样式 - 包含首页、解决方案、关于我们三个页面的所有样式 */

:root {
  --ink: #0e0e14;
  --ink-light: #1a1a2e;
  --surface: #f5f4f0;
  --white: #ffffff;
  --purple: #6728e0;
  --purple-light: #8040f0;
  --purple-pale: #ede9fe;
  --blue: #3b82f6;
  --blue-light: #60a5fa;
  --blue-pale: #dbeafe;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-pale: #fef3c7;
  --text-primary: #0e0e14;
  --text-secondary: #4a4a5a;
  --text-muted: #8888a0;
  --border: rgba(14, 14, 20, 0.1);
  --border-light: rgba(14, 14, 20, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

/* 导航栏固定偏移 */
body {
}

/* ========== HEADER / NAV ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-item {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
  color: var(--purple);
}

.nav-item-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item-wrapper.has-dropdown::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-muted);
  margin-left: 6px;
  transition: border-color 0.2s;
}

.nav-item-wrapper.has-dropdown:hover::after {
  border-top-color: var(--purple);
}

.nav-item-wrapper.has-dropdown.highlight-orange {
  border: 1px solid var(--purple);
  border-radius: 20px;
  padding: 4px 14px;
  transition: all 0.2s;
}

.nav-item-wrapper.has-dropdown.highlight-orange:hover {
  background: rgba(103, 40, 224, 0.1);
}

.nav-item-wrapper.has-dropdown.highlight-orange .nav-item {
  color: var(--purple);
}

.nav-item-wrapper.has-dropdown.highlight-orange::after {
  border-top-color: var(--purple);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1000;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.nav-item-wrapper.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 16px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 8px;
}

.nav-dropdown-item:hover {
  background: var(--purple-pale);
  color: var(--purple);
}

.agent-item {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.hot-icon {
  position: absolute;
  top: -10px;
  right: -18px;
  color: #ff4757;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 4px;
  background: transparent;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.2s;
}

.mobile-nav-close:hover {
  background: var(--surface);
  color: var(--text-primary);
}

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
}

.mobile-nav-item {
  display: block;
  padding: 14px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: var(--purple-pale);
  color: var(--purple);
  border-left-color: var(--purple);
}

.mobile-nav-group {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-group-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-nav-group-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-nav-group-toggle[aria-expanded='true'] svg {
  transform: rotate(180deg);
}

.mobile-nav-group-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--surface);
}

.mobile-nav-group-toggle[aria-expanded='true'] + .mobile-nav-group-content {
  max-height: 400px;
}

.mobile-nav-subitem {
  display: block;
  padding: 12px 20px 12px 36px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.mobile-nav-subitem:hover {
  color: var(--purple);
  background: rgba(103, 40, 224, 0.05);
}

.mobile-nav-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-light);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(103, 40, 224, 0.3);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--purple-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(103, 40, 224, 0.4);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

.btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-family: 'Noto Sans SC', sans-serif;
}

.btn-outline {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline:hover {
  color: var(--ink);
}

.btn-outline.sign-in-btn {
  border: 1px solid #ff8c42;
  color: #ff8c42;
  background: transparent;
}

.btn-outline.sign-in-btn:hover {
  background: rgba(255, 140, 66, 0.08);
}

.header-right .btn-primary {
  background: transparent;
  border: 1px solid #6728e0;
  color: #6728e0;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
}

.header-right .btn-primary:hover {
  background: rgba(103, 40, 224, 0.08);
}

/* QR MODAL */
.qr-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.qr-modal-overlay.show {
  display: flex;
}

.qr-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  position: relative;
}

.qr-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.qr-modal h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.qr-modal p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.qr-modal img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
}

/* ========== HERO ========== */
.hero {
  background: var(--ink);
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(103, 40, 224, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 40, 224, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-bg-glow {
  position: absolute;
  top: -120px;
  left: 30%;
  width: 800px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 40, 224, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(103, 40, 224, 0.15);
  border: 1px solid rgba(103, 40, 224, 0.3);
  color: #b08af8;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b08af8;
  flex-shrink: 0;
}

/* SLIDE SYSTEM */
.hero-slides {
  position: relative;
  min-height: 220px;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}
.hero-slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: scale(1.15);
  animation: visualFloat 6s ease-in-out infinite;
}

@keyframes visualFloat {
  0%,
  100% {
    transform: scale(1.15) translateY(0px);
  }
  50% {
    transform: scale(1.15) translateY(-10px);
  }
}

.hero-slide-visual svg {
  filter: drop-shadow(0 20px 60px rgba(103, 40, 224, 0.3));
  transition: all 0.5s ease;
}

.hero-slide-visual:hover svg {
  filter: drop-shadow(0 30px 80px rgba(103, 40, 224, 0.5));
  transform: scale(1.05);
}

.hero-slide-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 40, 224, 0.15) 0%, transparent 70%);
  animation: pulseRing 4s ease-out infinite;
  z-index: -1;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(176, 138, 248, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}
.hero h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(32px, 4vw, 70px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  text-align: left;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #b08af8 0%, #f0d080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
  font-weight: 300;
  text-align: left;
}

/* SLIDE DOTS */
.hero-dots {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 32px;
  margin-bottom: 40px;
}
.hero-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.hero-dot.active {
  background: var(--purple);
  width: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  font-family: 'Noto Sans SC', sans-serif;
}
.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  font-family: 'Noto Sans SC', sans-serif;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* QR MODAL */
.qr-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}
.qr-modal-overlay.show {
  display: flex;
}
.qr-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  position: relative;
}
.qr-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}
.qr-modal h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.qr-modal p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.qr-modal img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
}

/* LIGHT STEP HOVER */
.light-step {
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: #fff;
}
.light-step:not(:last-child) {
  border-right: 1px solid var(--border);
}
.light-step:hover {
  background: rgba(103, 40, 224, 0.08) !important;
}
.light-step:hover .light-letter {
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%) !important;
  color: #fff !important;
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 8px 24px rgba(103, 40, 224, 0.35);
}
.light-letter {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--purple);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.light-step-dark {
  background: var(--ink) !important;
}
.light-step-dark:hover {
  background: rgba(103, 40, 224, 0.3) !important;
}
.light-step-dark .light-letter {
  background: rgba(103, 40, 224, 0.2);
  color: #b08af8;
}
.light-step-dark:hover .light-letter {
  background: var(--purple) !important;
  color: #fff !important;
}

.light-method-section {
  background: #f5f5f5;
  padding: 100px 64px;
}
.light-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .light-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .light-step:nth-child(3) {
    border-right: none;
  }
  .light-step:nth-child(4),
  .light-step:nth-child(5) {
    border-top: 1px solid var(--border);
  }
  .light-step:nth-child(4) {
    border-right: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .light-steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    border: none;
    background: transparent;
  }
  .light-step {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }
  .light-step:not(:last-child) {
    border-right: 1px solid var(--border);
  }
  .light-step:nth-child(3),
  .light-step:nth-child(4),
  .light-step:nth-child(5) {
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
  .light-letter {
    margin: 0;
    flex-shrink: 0;
  }
  .light-step-title {
    margin-bottom: 4px;
  }
}
.light-step-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.light-step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.light-meaning-box {
  margin-top: 24px;
  padding: 20px 28px;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.light-meaning-label {
  font-size: 13px;
  color: var(--purple);
  font-weight: 700;
  white-space: nowrap;
}
.light-meaning-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* HORIZONTAL TIMELINE */
.h-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.h-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), #b08af8);
  z-index: 0;
}
.h-timeline-item {
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.h-timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
}
.h-timeline-dot span {
  font-size: 11px;
  font-weight: 700;
  color: var(--purple);
}
.h-timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 6px;
}
.h-timeline-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.4;
}
.h-timeline-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* LOGO WALL */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.logo-wall-img {
  width: 100%;
  border-radius: 12px;
}

/* SECTION COMMONS */
section {
  padding: 100px 64px;
}
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 1000px;
}
.section-header {
  margin-bottom: 60px;
}
.center {
  text-align: center;
}
.center .section-desc {
  margin: 0 auto;
}
.max-w {
  max-width: 1200px;
  margin: 0 auto;
}

/* PAIN POINTS */
.pain-section {
  background: var(--surface);
}
.pain-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(103, 40, 224, 0.12);
  border-color: rgba(103, 40, 224, 0.2);
}
.pain-card:hover::before {
  transform: scaleX(1);
}
.pain-card:hover .pain-num {
  color: var(--purple);
  transform: scale(1.1);
}
.pain-card:hover h3 {
  color: var(--purple);
}
.pain-num {
  transition: all 0.3s ease;
}
.pain-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(103, 40, 224, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.pain-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* POSITIONING */
.position-section {
  background: var(--ink);
}
.position-section .section-title {
  color: #fff;
}
.position-section .section-label {
  color: #a78bfa;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  margin-top: 60px;
}
.comparison-divider {
  background: rgba(255, 255, 255, 0.08);
}
.comparison-col {
  padding: 40px 40px;
}
.comparison-col.highlight {
  background: rgba(103, 40, 224, 0.12);
  border: 1px solid rgba(103, 40, 224, 0.3);
  border-radius: 16px;
  position: relative;
  margin: -1px;
}
.comparison-col.highlight::before {
  content: '推荐';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.comp-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.comp-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.comp-name.gold {
  color: var(--gold-light);
}
.comp-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comp-items li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.comp-items li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.25);
}
.comp-items li.yes {
  color: rgba(255, 255, 255, 0.9);
}
.comp-items li.yes::before {
  content: '✓';
  color: var(--gold-light);
}
.comp-bottom {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.comp-bottom strong {
  color: rgba(255, 255, 255, 0.7);
}

/* STAGE ROUTING - V2 - DARK THEME */
.stage-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.stage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(103, 40, 224, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.stage-section .section-label {
  color: #a78bfa;
}
.stage-section .section-title {
  color: #fff;
}
.stage-section .section-desc {
  color: rgba(255, 255, 255, 0.5);
}
.stage-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.stage-card-v2 {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.stage-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stage-card-v2:hover {
  border-color: rgba(103, 40, 224, 0.3);
  box-shadow: 0 24px 64px rgba(103, 40, 224, 0.2);
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
}
.stage-card-v2:hover::before {
  opacity: 1;
}
.stage-card-v2-bg {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(103, 40, 224, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: all 0.5s ease;
}
.stage-card-v2:hover .stage-card-v2-bg {
  transform: scale(1.2);
  background: radial-gradient(circle, rgba(103, 40, 224, 0.12) 0%, transparent 70%);
}
.stage-card-v2.featured {
  background: linear-gradient(135deg, rgba(103, 40, 224, 0.03) 0%, var(--white) 100%);
  border-color: rgba(103, 40, 224, 0.2);
  box-shadow: 0 8px 32px rgba(103, 40, 224, 0.06);
}
.stage-card-v2.featured::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--purple), var(--gold-light), var(--purple));
}
.stage-card-v2-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(103, 40, 224, 0.25);
}
.stage-card-v2-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.stage-card-v2-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.4s ease;
}
.stage-card-v2-icon svg {
  width: 28px;
  height: 28px;
}
.stage-card-v2:hover .stage-card-v2-icon {
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(103, 40, 224, 0.35);
}
.stage-card-v2-phase {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.stage-card-v2-phase-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.stage-card-v2:hover .stage-card-v2-phase-num {
  opacity: 0.35;
}
.stage-card-v2-phase-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.stage-card-v2-body {
  flex: 1;
  margin-bottom: 24px;
}
.stage-card-v2-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.stage-card-v2-subtitle {
  font-size: 14px;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.stage-card-v2-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}
.stage-card-v2-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}
.stage-card-v2-problems {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.stage-card-v2-problems li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.stage-card-v2-problem-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  margin-top: 7px;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.stage-card-v2:hover .stage-card-v2-problem-dot {
  opacity: 0.9;
  transform: scale(1.2);
}
.stage-card-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.stage-card-v2-link::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.stage-card-v2-link span,
.stage-card-v2-link svg {
  position: relative;
  z-index: 1;
}
.stage-card-v2-link svg {
  transition: transform 0.3s ease;
}
.stage-card-v2-link:hover {
  color: #fff;
  box-shadow: 0 8px 24px rgba(103, 40, 224, 0.3);
  transform: translateX(4px);
}
.stage-card-v2-link:hover::before {
  opacity: 1;
}
.stage-card-v2-link:hover svg {
  transform: translateX(4px);
}

/* STAGE CARD V2 - STARTUP (PURPLE) */
.stage-card-v2--startup {
  --stage-color: var(--purple);
  --stage-color-light: var(--purple-light);
  --stage-color-pale: var(--purple-pale);
  --stage-color-rgb: 103, 40, 224;
}

/* STAGE CARD V2 - GROWTH (BLUE) */
.stage-card-v2--growth {
  --stage-color: var(--blue);
  --stage-color-light: var(--blue-light);
  --stage-color-pale: var(--blue-pale);
  --stage-color-rgb: 59, 130, 246;
}

/* STAGE CARD V2 - MATURE (GOLD) */
.stage-card-v2--mature {
  --stage-color: var(--gold);
  --stage-color-light: var(--gold-light);
  --stage-color-pale: var(--gold-pale);
  --stage-color-rgb: 201, 168, 76;
}

/* Apply stage-specific colors - DARK THEME */
.stage-card-v2--startup::before,
.stage-card-v2--growth::before,
.stage-card-v2--mature::before {
  background: linear-gradient(90deg, transparent, var(--stage-color), transparent);
}

.stage-card-v2--startup:hover,
.stage-card-v2--growth:hover,
.stage-card-v2--mature:hover {
  border-color: rgba(var(--stage-color-rgb), 0.4);
  box-shadow: 0 24px 64px rgba(var(--stage-color-rgb), 0.25);
}

.stage-card-v2--startup .stage-card-v2-bg,
.stage-card-v2--growth .stage-card-v2-bg,
.stage-card-v2--mature .stage-card-v2-bg {
  background: radial-gradient(circle, rgba(var(--stage-color-rgb), 0.1) 0%, transparent 70%);
}

.stage-card-v2--startup:hover .stage-card-v2-bg,
.stage-card-v2--growth:hover .stage-card-v2-bg,
.stage-card-v2--mature:hover .stage-card-v2-bg {
  background: radial-gradient(circle, rgba(var(--stage-color-rgb), 0.18) 0%, transparent 70%);
}

.stage-card-v2--startup .stage-card-v2-icon,
.stage-card-v2--growth .stage-card-v2-icon,
.stage-card-v2--mature .stage-card-v2-icon {
  background: rgba(var(--stage-color-rgb), 0.15);
  color: #fff;
}

.stage-card-v2--startup:hover .stage-card-v2-icon,
.stage-card-v2--growth:hover .stage-card-v2-icon,
.stage-card-v2--mature:hover .stage-card-v2-icon {
  background: linear-gradient(135deg, var(--stage-color) 0%, var(--stage-color-light) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(var(--stage-color-rgb), 0.4);
}

.stage-card-v2--startup .stage-card-v2-phase-num,
.stage-card-v2--growth .stage-card-v2-phase-num,
.stage-card-v2--mature .stage-card-v2-phase-num {
  color: #fff;
}

.stage-card-v2--startup .stage-card-v2-subtitle,
.stage-card-v2--growth .stage-card-v2-subtitle,
.stage-card-v2--mature .stage-card-v2-subtitle {
  color: var(--stage-color);
}

.stage-card-v2--startup .stage-card-v2-problem-dot,
.stage-card-v2--growth .stage-card-v2-problem-dot,
.stage-card-v2--mature .stage-card-v2-problem-dot {
  background: #fff;
}

.stage-card-v2--startup .stage-card-v2-link,
.stage-card-v2--growth .stage-card-v2-link,
.stage-card-v2--mature .stage-card-v2-link {
  color: #fff;
  background: rgba(var(--stage-color-rgb), 0.15);
  border-color: rgba(var(--stage-color-rgb), 0.25);
}

.stage-card-v2--startup .stage-card-v2-link::before,
.stage-card-v2--growth .stage-card-v2-link::before,
.stage-card-v2--mature .stage-card-v2-link::before {
  background: linear-gradient(135deg, var(--stage-color) 0%, var(--stage-color-light) 100%);
}

.stage-card-v2--startup .stage-card-v2-link:hover,
.stage-card-v2--growth .stage-card-v2-link:hover,
.stage-card-v2--mature .stage-card-v2-link:hover {
  box-shadow: 0 8px 24px rgba(var(--stage-color-rgb), 0.4);
  border-color: transparent;
}

/* Remove old featured styles */
.stage-card-v2.featured {
  background: var(--white);
  border-color: var(--border);
  box-shadow: none;
}

.stage-card-v2.featured::before {
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.stage-card-v2-badge {
  display: none;
}

/* RESPONSIVE - STAGE SECTION */
@media (max-width: 1024px) {
  .stage-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .stage-grid-v2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stage-card-v2:hover {
    transform: none;
  }
  .stage-card-v2:hover .stage-card-v2-icon {
    transform: scale(1.05);
  }
}

/* FOCUS VISIBLE FOR ACCESSIBILITY */
.stage-card-v2-link:focus-visible {
  outline: 2px solid var(--stage-color, var(--purple));
  outline-offset: 2px;
}

/* PROOF + CASES COMBINED SECTION */
.proof-cases-section {
  background: var(--surface);
  padding: 100px 64px 60px;
}

.cases-section {
  background: var(--surface);
  padding: 60px 64px 100px;
}

.proof-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 14, 20, 0.04);
}
.proof-num-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
}
.proof-num-card:hover {
  background: #fafafc;
  transform: translateY(-2px);
  box-shadow: inset 0 0 30px rgba(103, 40, 224, 0.03);
}
.proof-big {
  font-family: 'Noto Serif SC', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.proof-big span {
  color: var(--purple);
}
.proof-num-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* CASE STUDIES */
.cases-section {
  position: relative;
}
.cases-section .section-header {
  margin-bottom: 48px;
}
.cases-container {
  position: relative;
  padding: 8px 0;
}
.cases-wrapper {
  position: relative;
  overflow: visible;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.cases-row {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  padding: 0 64px;
}
.case-card {
  flex: 0 0 calc((100vw - 168px) / 3);
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(14, 14, 20, 0.04);
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(103, 40, 224, 0.12);
  border-color: rgba(103, 40, 224, 0.2);
}
.case-industry {
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 0 0 10px 0;
}
.case-body {
  padding: 22px 24px 24px;
}
.case-brand {
  font-family: 'Noto Serif SC', serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.case-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}
.case-result {
  background: linear-gradient(135deg, var(--purple-pale) 0%, #f5f3ff 100%);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(103, 40, 224, 0.08);
}
.case-result-label {
  font-size: 11px;
  color: var(--purple);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.case-result-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  font-family: 'Noto Serif SC', serif;
  line-height: 1.3;
}
.case-light-list {
  margin: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case-light-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.case-light-badge {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--purple);
  margin-top: 1px;
  transition: all 0.2s ease;
}
.case-card:hover .case-light-badge {
  background: var(--purple);
  color: #fff;
}
.case-light-text {
  flex: 1;
}
.case-light-text strong {
  color: var(--ink);
  font-weight: 600;
}
.cases-nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.cases-nav {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(14, 14, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}
.cases-nav:hover {
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
  border-color: var(--purple);
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(103, 40, 224, 0.25);
}
.cases-nav:hover svg {
  stroke: #fff;
}
.cases-nav svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  stroke-width: 2.5;
  fill: none;
  transition: stroke 0.2s ease;
}

/* FINAL CTA */
.final-cta {
  background: var(--ink);
  text-align: center;
  padding: 120px 64px;
}
.final-cta h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.final-cta h2 em {
  font-style: normal;
  color: var(--gold-light);
}
.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== PAGE 2: SOLUTIONS ========== */
.sol-hero {
  background: var(--ink);
  min-height: auto;
  max-height: 480px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}
.sol-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(103, 40, 224, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 40, 224, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.sol-hero-glow {
  position: absolute;
  top: -120px;
  right: 10%;
  width: 600px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 40, 224, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.sol-hero-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
.sol-hero h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}
.sol-hero h1 em {
  font-style: normal;
  color: #a78bfa;
}
.sol-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
  line-height: 1.7;
}
.sol-finder {
  background: linear-gradient(135deg, #faf9ff 0%, #f5f3ff 100%);
  border: 1px solid rgba(103, 40, 224, 0.12);
  border-radius: 24px;
  padding: 40px 48px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.sol-finder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(103, 40, 224, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.sol-finder-label {
  font-size: 13px;
  color: var(--purple);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sol-finder-label::before {
  content: '◆';
  font-size: 8px;
  color: var(--purple);
}
.sol-finder-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.sol-btn {
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  font-family: 'Noto Sans SC', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.sol-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.sol-btn span {
  position: relative;
  z-index: 1;
}
.sol-btn:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(103, 40, 224, 0.15);
}
.sol-btn:hover::before {
  opacity: 0.05;
}
.sol-btn.active {
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(103, 40, 224, 0.25);
}
.sol-btn.active::before {
  display: none;
}
.sol-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SOLUTION BLOCKS */
.sol-blocks-section {
  background: linear-gradient(180deg, var(--white) 0%, #fafafa 100%);
  padding: 64px 64px 100px;
  position: relative;
}
.sol-blocks-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.sol-block {
  display: none;
  grid-template-columns: 400px 1fr;
  gap: 100px;
  align-items: start;
  padding: 64px 0;
  animation: fadeSlideUp 0.5s ease forwards;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sol-block.active {
  display: grid;
}
.sol-block-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sol-block-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
}
.sol-block-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.sol-block-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 32px;
}
.sol-pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.sol-pain-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 16px 20px;
  background: linear-gradient(135deg, #fff9f5 0%, #fff5ed 100%);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  line-height: 1.6;
  position: relative;
  transition: all 0.3s ease;
}
.sol-pain-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.btn-primary-sm {
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(103, 40, 224, 0.2);
}
.btn-primary-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(103, 40, 224, 0.3);
}
.sol-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sol-product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.sol-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.sol-product-card:hover {
  border-color: transparent;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(103, 40, 224, 0.12);
  transform: translateY(-4px);
}
.sol-product-card:hover::before {
  transform: scaleX(1);
}
.sol-product-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple-pale) 0%, #ede9fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.sol-product-card:hover .sol-product-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
}
.sol-product-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.sol-product-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.sol-product-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(103, 40, 224, 0.08);
  color: var(--purple);
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}
.sol-product-card:hover .sol-product-tag {
  background: var(--purple);
  color: #fff;
}

/* WHY US COMPARISON */
.why-us-section {
  background: var(--surface);
  padding: 100px 64px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.compare-table th.highlight-col {
  background: var(--purple);
  color: #fff;
}
.compare-table td {
  padding: 18px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.compare-table td.highlight-col {
  background: rgba(103, 40, 224, 0.04);
  font-weight: 500;
  color: var(--ink);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.check {
  color: var(--purple);
  font-size: 16px;
}
.cross {
  color: var(--text-muted);
}

/* ========== PAGE 3: ABOUT ========== */
.about-hero {
  background: var(--ink);
  min-height: auto;
  max-height: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.about-hero-glow {
  position: absolute;
  top: -100px;
  right: 5%;
  width: 600px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
.about-hero h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.about-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 600px;
}
.about-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* STORY SECTION */
.story-section {
  background: var(--white);
  padding: 100px 64px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}
.story-highlight {
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 600;
}

/* TIMELINE */
.timeline-section {
  background: var(--surface);
  padding: 100px 64px;
}
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 12px;
  width: 2px;
  bottom: 12px;
  background: linear-gradient(180deg, var(--purple), var(--gold));
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--purple);
}
.timeline-year {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* TEAM */
.team-section {
  background: var(--white);
  padding: 100px 64px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(14, 14, 20, 0.1);
}
.team-avatar {
  height: 180px;
  background: linear-gradient(135deg, var(--ink), #2d2060);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-initials {
  font-family: 'Noto Serif SC', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}
.team-info {
  padding: 28px;
}
.team-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--purple);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.team-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CERTIFICATIONS */
.cert-section {
  background: var(--surface);
  padding: 80px 64px;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.cert-card:hover {
  border-color: var(--purple);
}
.cert-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.cert-num {
  font-family: 'Noto Serif SC', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.cert-num span {
  color: var(--purple);
}
.cert-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* PARTNERS */
.partners-section {
  background: var(--ink);
  padding: 80px 64px;
}
.partners-section .section-title {
  color: #fff;
}
.partners-section .section-label {
  color: #a78bfa;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.partner-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.partner-card:hover {
  border-color: rgba(103, 40, 224, 0.5);
}
.partner-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(103, 40, 224, 0.2);
  color: #a78bfa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.partner-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.partner-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: #080810;
  padding: 48px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Noto Serif SC', serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) {
  .hero-slide {
    grid-template-columns: 1fr 320px;
    gap: 48px;
  }
  .hero-slide-visual {
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 120px 40px 60px;
  }
  .hero-slide {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-slide-text {
    order: 1;
    text-align: center;
  }
  .hero h1 {
    text-align: center;
    font-size: clamp(28px, 5vw, 42px);
  }
  .hero-subtitle {
    text-align: center;
  }
  .hero-dots {
    justify-content: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-slide-visual {
    order: 2;
    transform: scale(0.9);
  }
  .hero-particles {
    opacity: 0.6;
  }
  .nav-menu {
    display: none;
  }
  .header-right {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 40px;
  }
  .hero-slide-visual {
    transform: scale(0.75);
  }
  .hero h1 {
    font-size: 26px;
    line-height: 1.3;
  }
  .hero h1 br {
    display: none;
  }
  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }
  .hero-subtitle br {
    display: none;
  }
  .hero-stats {
    gap: 24px;
    padding-top: 24px;
    margin-top: 32px;
  }
  .hero-stat-num {
    font-size: 24px;
  }
  .hero-stat-label {
    font-size: 11px;
  }
  .btn-primary,
  .btn-ghost {
    padding: 12px 24px;
    font-size: 14px;
  }
  .hero-particles {
    display: none;
  }
}

@media (max-width: 900px) {
  section,
  .hero,
  .final-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
  nav {
    padding: 0 24px;
  }
  .pain-cards,
  .stage-content.active,
  .story-grid,
  .comparison-grid,
  .cases-row,
  .team-grid,
  .cert-grid,
  .partners-grid,
  .sol-products-grid,
  .sol-block.active {
    grid-template-columns: 1fr;
  }
  .comparison-divider {
    display: none;
  }
  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content,
.sol-hero-content,
.about-hero-content {
  animation: fadeUp 0.6s ease both;
}

/* ========== PAGE 4: NEWS ========== */
.news-hero {
  background: var(--ink);
  padding: 64px 48px 56px;
  position: relative;
  overflow: hidden;
}
.news-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(103, 40, 224, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 40, 224, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
}
.news-hero-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 40, 224, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.news-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.news-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(103, 40, 224, 0.15);
  border: 1px solid rgba(103, 40, 224, 0.3);
  color: #b08af8;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
.news-hero-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b08af8;
  flex-shrink: 0;
}
.news-hero h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}
.news-hero h1 em {
  font-style: normal;
  color: #b08af8;
}
.news-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.news-hero-visual {
  flex-shrink: 0;
  opacity: 0.85;
}

.news-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 80px;
}

.news-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 36px;
}
.news-tab {
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  font-family: 'Noto Sans SC', sans-serif;
  border-right: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.news-tab:last-child {
  border-right: none;
}
.news-tab:hover {
  color: var(--purple);
  background: var(--purple-pale);
}
.news-tab.active {
  background: var(--purple);
  color: #fff;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-list.hidden {
  display: none;
}

.news-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.news-item:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(103, 40, 224, 0.1);
}
.news-item-image {
  width: 220px;
  height: 148px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}
.news-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.news-item-tag {
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.news-item-tag.yg {
  background: var(--purple-pale);
  color: var(--purple);
}
.news-item-tag.industry {
  background: #e0f2fe;
  color: #0369a1;
}
.news-item-date {
  font-size: 13px;
  color: var(--text-muted);
}
.news-item-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item:hover .news-item-title {
  color: var(--purple);
}
.news-item-summary {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item-arrow {
  font-size: 13px;
  color: var(--purple);
  font-weight: 500;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s;
}
.news-item:hover .news-item-arrow {
  opacity: 1;
}

.news-item.featured {
  flex-direction: column;
  background: var(--ink);
  border-color: rgba(103, 40, 224, 0.3);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.news-item.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(103, 40, 224, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.news-item.featured:hover {
  border-color: var(--purple);
  box-shadow: 0 16px 48px rgba(103, 40, 224, 0.2);
}
.news-item-featured-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: var(--surface);
}
.news-item-featured-body {
  padding: 28px 32px 32px;
}
.news-item.featured .news-item-header {
  margin-bottom: 16px;
}
.news-item.featured .news-item-title {
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
  -webkit-line-clamp: 2;
}
.news-item.featured:hover .news-item-title {
  color: #b08af8;
}
.news-item.featured .news-item-summary {
  color: rgba(255, 255, 255, 0.5);
}
.news-item.featured .news-item-arrow {
  color: #b08af8;
}
.news-item.featured .news-item-date {
  color: rgba(255, 255, 255, 0.35);
}

.news-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: start;
}
.news-grid-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card-compact {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.news-card-compact:hover {
  border-color: var(--purple);
  box-shadow: 0 8px 28px rgba(103, 40, 224, 0.08);
  transform: translateX(3px);
}
.news-card-compact-image {
  width: 96px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface);
}
.news-card-compact-body {
  flex: 1;
}
.news-card-compact-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.news-card-compact-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-compact:hover .news-card-compact-title {
  color: var(--purple);
}
.news-card-compact-date {
  font-size: 12px;
  color: var(--text-muted);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.pagination-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-secondary);
  transition: all 0.2s;
  font-family: 'Noto Sans SC', sans-serif;
}
.pagination-btn:hover:not(:disabled) {
  border-color: var(--purple);
  color: var(--purple);
}
.pagination-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.pagination-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
