/* ============================================
   企牛网络 - 全局样式
   纯 HTML+CSS 版本 - 合并样式
   ============================================ */

/* 使用系统字体栈，避免外部字体加载延迟 */
/* 如需使用 Inter 字体，请下载到本地或替换为国内 CDN */

/* ============================================
   入场动画关键帧
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 动画基础类 */
.animate-on-scroll {
  opacity: 0;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 动画延迟 */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* 滚动触发动画 - 初始状态 */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.scroll-animate-left {
  transform: translateX(-30px);
}

.scroll-animate.scroll-animate-right {
  transform: translateX(30px);
}

.scroll-animate.scroll-animate-scale {
  transform: scale(0.9);
}

/* 当元素进入视口时的状态 */
.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* 延迟类用于滚动动画 */
.scroll-delay-100 { transition-delay: 0.1s; }
.scroll-delay-200 { transition-delay: 0.2s; }
.scroll-delay-300 { transition-delay: 0.3s; }
.scroll-delay-400 { transition-delay: 0.4s; }
.scroll-delay-500 { transition-delay: 0.5s; }
.scroll-delay-600 { transition-delay: 0.6s; }
.scroll-delay-700 { transition-delay: 0.7s; }
.scroll-delay-800 { transition-delay: 0.8s; }

/* ============================================
   CSS 变量
   ============================================ */
:root {
  /* 主色调 */
  --color-primary: #165DFF;
  --color-primary-dark: #0045E6;
  --color-primary-light: #4080FF;
  --color-secondary: #FF7D00;
  --color-secondary-dark: #E66A00;
  
  /* 背景色 */
  --color-bg-dark: #0B1528;
  --color-bg-light: #F5F7FA;
  --color-bg-blue-light: #F0F4FF;
  
  /* 文字色 */
  --color-text-main: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  
  /* 边框 */
  --color-border: #E5E6EB;
  
  /* 字体 */
  --font-sans: "Source Han Sans CN", "Noto Sans SC", sans-serif;
  
  /* 渐变色彩 */
  --gradient-primary: linear-gradient(135deg, #165DFF 0%, #4080FF 100%);
  --gradient-primary-dark: linear-gradient(135deg, #0045E6 0%, #165DFF 100%);
  --gradient-secondary: linear-gradient(135deg, #FF7D00 0%, #FF9F40 100%);
  --gradient-hero: linear-gradient(135deg, #0B1528 0%, #1a365d 50%, #0B1528 100%);
  --gradient-card-hover: linear-gradient(135deg, rgba(22, 93, 255, 0.05) 0%, rgba(64, 128, 255, 0.1) 100%);
  --gradient-border: linear-gradient(135deg, rgba(22, 93, 255, 0.3) 0%, rgba(64, 128, 255, 0.1) 100%);
  
  /* 阴影变量 */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 8px 30px rgba(22, 93, 255, 0.15);
  --shadow-primary-lg: 0 12px 40px rgba(22, 93, 255, 0.2);
  --shadow-secondary: 0 8px 30px rgba(255, 125, 0, 0.15);
  --shadow-secondary-lg: 0 12px 40px rgba(255, 125, 0, 0.2);
  
  /* 玻璃拟态 */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* 间距变量 */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 128px;

  /* 字体层级 */
  --text-hero: clamp(40px, 5vw, 72px);
  --text-h1: clamp(32px, 4vw, 48px);
  --text-h2: clamp(28px, 3vw, 36px);
  --text-h3: clamp(22px, 2.5vw, 28px);
  --text-h4: clamp(18px, 2vw, 22px);
  --text-body: 16px;
  --text-small: 14px;
  --text-caption: 12px;

  /* 圆角变量 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* ============================================
   基础重置
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background-color: white;
  color: var(--color-text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* 修复第三方扩展插件（如 Postbot）导致的底部空白问题 */
#postbot-container {
  position: fixed !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

::selection {
  background-color: rgba(22, 93, 255, 0.2);
  color: var(--color-primary);
}

/* ============================================
   布局
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.layout-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.layout-main {
  flex: 1 0 auto;
  width: 100%;
  position: relative;
  padding-top: 72px;
}

/* ============================================
   导航栏
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  height: 72px;
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 10;
}

.navbar-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 12px;
  background-color: var(--color-primary);
  color: white;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
}

.navbar-logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.navbar-logo-title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: var(--color-text-main);
}

.navbar-logo-subtitle {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
}

.navbar-nav {
  display: none;
}

@media (min-width: 768px) {
  .navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-item {
  position: relative;
  padding: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: bold;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  min-height: 30px;
  color: var(--color-text-light);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(22, 93, 255, 0.2);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-primary);
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  width: 192px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  z-index: 50;
}

.nav-item:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  margin-top: 8px;
}

.nav-submenu-content {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
}

.nav-submenu-link {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-submenu-link:hover {
  color: var(--color-primary);
  background-color: var(--color-bg-light);
}

.nav-button {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background-color: var(--color-primary);
  margin-left: 8px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  box-shadow: 0 4px 14px rgba(22, 93, 255, 0.2);
  transition: all 0.3s;
}

.nav-button:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 93, 255, 0.3);
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 6px;
  position: relative;
  z-index: 60;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-main);
  width: 40px;
  height: 40px;
}

.mobile-menu-btn .menu-icon-open {
  display: block;
}

.mobile-menu-btn .menu-icon-close {
  display: none;
}

.mobile-menu-toggle:checked ~ .navbar .mobile-menu-btn .menu-icon-open,
body:has(.mobile-menu-toggle:checked) .mobile-menu-btn .menu-icon-open {
  display: none;
}

.mobile-menu-toggle:checked ~ .navbar .mobile-menu-btn .menu-icon-close,
body:has(.mobile-menu-toggle:checked) .mobile-menu-btn .menu-icon-close {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* 移动端菜单 - 使用 checkbox hack */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background-color: white;
  padding: 80px 24px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  height: 100vh;
  height: 100dvh;
  box-sizing: border-box;
}

.mobile-menu-toggle:checked ~ .mobile-menu {
  transform: translateX(0);
}

/* 菜单打开时禁止背景滚动 */
body:has(.mobile-menu-toggle:checked) {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--color-bg-light);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--color-text-main);
  padding: 12px 0;
  flex: 1;
  text-decoration: none;
}

.mobile-nav-submenu-btn {
  padding: 8px 12px;
  color: var(--color-text-muted);
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.mobile-nav-has-submenu.is-open .mobile-nav-submenu-btn {
  transform: rotate(180deg);
}

.mobile-submenu-content {
  background-color: var(--color-bg-light);
  border-radius: 12px;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-has-submenu.is-open .mobile-submenu-content {
  padding: 12px;
  max-height: 400px;
  opacity: 1;
  margin-top: 8px;
  margin-bottom: 8px;
}

.mobile-submenu-link {
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-light);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-submenu-link:hover {
  color: var(--color-primary);
  background: rgba(22, 93, 255, 0.06);
}

.mobile-cta {
  margin-top: auto;
  padding-top: 32px;
  padding-bottom: 16px;
}

.mobile-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: var(--color-secondary);
  color: white;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(255,125,0,0.3);
}

/* ============================================
   页脚
   ============================================ */
.footer {
  background: linear-gradient(180deg, white 0%, var(--color-bg-light) 100%);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-light);
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-2xl);
}

/* 当页脚紧跟在CTA区域后面时，移除上边框 */
.cta-section + .footer,
.services-cta-section + .footer,
.news-cta-section + .footer,
.templates-cta-section + .footer {
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-col-main {
    grid-column: span 5 / span 5;
  }
  .footer-col-nav {
    grid-column: span 2 / span 2;
  }
  .footer-col-contact {
    grid-column: span 3 / span 3;
  }
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 12px;
  background-color: var(--color-bg-light);
  color: var(--color-primary);
  font-weight: bold;
  font-size: 18px;
  border: 1px solid var(--color-border);
}

.footer-logo-text {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: var(--color-text-main);
}

.footer-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 384px;
  margin-bottom: 32px;
}

.footer-heading {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 24px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  font-weight: 300;
}

.footer-link {
  transition: color 0.3s;
  position: relative;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s;
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-contact-item {
  color: var(--color-text-light);
}

.footer-contact-label {
  color: var(--color-text-main);
  font-weight: 500;
  display: block;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-link {
  transition: color 0.3s;
}

.footer-bottom-link:hover {
  color: var(--color-text-light);
}

/* ============================================
   通用按钮样式
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: var(--gradient-secondary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-secondary);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 125, 0, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--shadow-secondary);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-main);
  background-color: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background-color 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--color-bg-light);
}

/* ============================================
   分页样式
   ============================================ */
.pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.pagination-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  font-family: inherit;
}

.pagination-btn-arrow {
  border-color: var(--color-border);
  background-color: white;
  color: var(--color-text-muted);
}

.pagination-btn-arrow:hover:not(:disabled) {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(22, 93, 255, 0.1);
}

.pagination-btn-arrow:disabled {
  cursor: not-allowed;
  color: var(--color-border);
  border-color: var(--color-border);
}

.pagination-btn-arrow svg {
  width: 16px;
  height: 16px;
}

.pagination-btn-active {
  background-color: var(--color-primary);
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 14px rgba(22, 93, 255, 0.3);
}

.pagination-btn-page {
  color: var(--color-text-light);
  font-weight: bold;
}

.pagination-btn-page:hover {
  border-color: var(--color-border);
  background-color: white;
}

.pagination-dots {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-weight: bold;
  letter-spacing: 2px;
}

/* ============================================
   辅助类
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rotate-180 {
  transform: rotate(180deg);
}

.btn-icon {
  margin-left: 8px;
  width: 16px;
  height: 16px;
}

/* ============================================
   首页样式
   ============================================ */
.home-page {
  flex: 1;
  width: 100%;
  background-color: white;
  color: var(--color-text-main);
  font-family: var(--font-sans);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FAFBFC 0%, #F0F4FF 50%, #FAFBFC 100%);
  overflow: hidden;
  margin-top: -72px;
  padding-top: 72px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Im00MCA0MEgwVjAiIHN0cm9rZT0icmdiYSgyMiA5MyAyNTUgMC4xKSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIi8+PC9zdmc+');
}

.hero-bg-glow-1 {
  position: absolute;
  top: -10%;
  right: 15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(22, 93, 255, 0.12) 0%, rgba(22, 93, 255, 0.04) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.hero-bg-glow-2 {
  position: absolute;
  bottom: -15%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 125, 0, 0.1) 0%, rgba(255, 125, 0, 0.03) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: float 10s ease-in-out infinite reverse;
}

.hero-bg-glow-3 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(64, 128, 255, 0.08) 0%, transparent 70%);
  filter: blur(80px);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: bold;
  letter-spacing: -0.5px;
  margin-bottom: var(--space-xl);
  color: var(--color-text-main);
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(22, 93, 255, 0.1);
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
}

.hero-desc {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 48px;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 20px;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* Services Section */
.services-section {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: var(--text-h2);
  font-weight: bold;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.section-divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: 0 auto var(--space-lg);
  border-radius: 9999px;
}

.section-desc {
  color: var(--color-text-light);
  max-width: 672px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 230, 235, 0.6);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: rgba(22, 93, 255, 0.3);
  box-shadow: var(--shadow-primary);
  transform: translateY(-8px);
}

@media (min-width: 1024px) {
  .service-card:hover,
  .case-card:hover,
  .home-news-card:hover,
  .cases-card:hover,
  .template-card:hover,
  .news-card:hover,
  .guideline-card:hover,
  .timeline-card:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg) rotateY(2deg);
  }
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: linear-gradient(to bottom right, rgba(22, 93, 255, 0.05), transparent);
  border-bottom-left-radius: 9999px;
  margin-right: -64px;
  margin-top: -64px;
  transition: transform 0.7s ease-out;
  z-index: 0;
}

.service-card:hover .service-card-bg {
  transform: scale(1.5);
}

.service-card-content {
  position: relative;
  z-index: 10;
}

.service-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: var(--color-bg-light);
  color: var(--color-primary);
  margin-bottom: 32px;
  transition: all 0.5s;
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 8px 20px rgba(22, 93, 255, 0.2);
}

.service-title {
  font-size: var(--text-h4);
  font-weight: bold;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.service-card:hover .service-title {
  color: var(--color-primary);
}

.service-desc {
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 32px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-muted);
  transition: color 0.3s;
}

.service-card:hover .service-link {
  color: var(--color-primary);
}

.service-link-icon {
  margin-left: 6px;
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.service-card:hover .service-link-icon {
  transform: translateX(6px);
}

/* Feature Section */
.feature-section {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  background-color: var(--color-bg-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-title {
  font-size: var(--text-h2);
  font-weight: bold;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.5px;
}

.feature-desc {
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 48px;
  font-size: 18px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-item-icon {
  margin-top: 0;
  padding: 8px;
  background-color: var(--color-bg-dark);
  border-radius: 8px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 21, 40, 0.1);
}

.feature-item-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 2px;
  letter-spacing: -0.5px;
}

.feature-item-desc {
  color: var(--color-text-light);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
}

.feature-dashboard-mockup {
  position: relative;
  background-color: white;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(229, 230, 235, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  padding: 40px;
  overflow: hidden;
}

.feature-dashboard-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(245, 247, 250, 1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.feature-dashboard-content {
  position: relative;
  z-index: 10;
}

.feature-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.feature-dashboard-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(22, 93, 255, 0.15);
  border: 1px solid rgba(229, 230, 235, 0.5);
  color: var(--color-primary);
}

.feature-dashboard-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background-color: rgba(255, 125, 0, 0.1);
  color: var(--color-secondary);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: bold;
}

.feature-dashboard-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 140px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(229, 230, 235, 0.8);
  margin-bottom: 32px;
}

.feature-dashboard-bar {
  width: 48px;
  border-radius: 6px 6px 0 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-dashboard-bar:hover {
  transform: translateY(-8px) scale(1.05);
  filter: brightness(1.2) drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.feature-dashboard-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
}

.feature-dashboard-bar-1 {
  height: 40%;
  background-color: rgba(22, 93, 255, 0.2);
  transform-origin: bottom;
  animation: barGrow1 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.feature-dashboard-bar-1.is-visible {
  animation-play-state: running;
}

.feature-dashboard-bar-2 {
  height: 65%;
  background-color: rgba(22, 93, 255, 0.5);
  transform-origin: bottom;
  animation: barGrow2 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
  animation-play-state: paused;
}

.feature-dashboard-bar-2.is-visible {
  animation-play-state: running;
}

.feature-dashboard-bar-3 {
  height: 100%;
  background-color: var(--color-secondary);
  box-shadow: 0 0 20px rgba(255, 125, 0, 0.3);
  transform-origin: bottom;
  animation: barGrow3 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
  animation-play-state: paused;
}

.feature-dashboard-bar-3.is-visible {
  animation-play-state: running;
}

@keyframes barGrow1 {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes barGrow2 {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes barGrow3 {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.feature-dashboard-stats {
  display: flex;
  justify-content: space-between;
}

.feature-dashboard-stat {
  display: flex;
  flex-direction: column;
}

.feature-dashboard-stat-value {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 20px rgba(22, 93, 255, 0.2);
}

.feature-dashboard-stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.feature-dashboard-stat-right {
  text-align: right;
}

.feature-dashboard-stat-value-highlight {
  color: var(--color-primary);
}

.feature-dashboard-stat-percent {
  color: var(--color-primary);
  font-size: 24px;
}

.feature-dashboard-stat-x {
  font-size: 20px;
  color: var(--color-text-light);
}

/* Cases Section */
.cases-section {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  background-color: white;
}

.cases-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 32px;
}

@media (min-width: 768px) {
  .cases-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.cases-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-main);
  transition: color 0.3s, border-color 0.3s;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-text-main);
}

.cases-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(229, 230, 235, 0.6);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.case-card:hover {
  border-color: rgba(22, 93, 255, 0.3);
  box-shadow: var(--shadow-primary);
  transform: translateY(-4px);
}

/* 卡片悬停光晕扫过效果 */
.case-card::before,
.home-news-card::before,
.service-card::before,
.cases-card::before,
.template-card::before,
.news-card::before,
.guideline-card::before,
.timeline-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
  pointer-events: none;
  z-index: 1;
}

.case-card:hover::before,
.home-news-card:hover::before,
.service-card:hover::before,
.cases-card:hover::before,
.template-card:hover::before,
.news-card:hover::before,
.guideline-card:hover::before,
.timeline-card:hover::before {
  transform: translateX(100%);
}

.case-img-wrapper {
  position: relative;
  height: 256px;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.case-card:hover .case-img {
  transform: scale(1.05);
}

.case-category {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: white;
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-text-main);
  text-transform: uppercase;
}

.case-content {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

@media (min-width: 768px) {
  .case-content {
    padding: var(--space-2xl);
  }
}

.case-icon-link {
  position: absolute;
  top: -24px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background-color 0.3s;
}

.case-icon-link:hover {
  background-color: var(--color-primary-dark);
}

.case-title {
  font-size: var(--text-h3);
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
  padding-right: 48px;
}

.case-desc {
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  font-size: 14px;
}

.case-metrics-wrapper {
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.case-metrics-label {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.case-metrics-value {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(22, 93, 255, 0.3);
}

/* News Section */
.home-news-section {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  background-color: var(--color-bg-light);
}

.home-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .home-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-news-card {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(229, 230, 235, 0.6);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.home-news-card:hover {
  border-color: rgba(22, 93, 255, 0.3);
  box-shadow: var(--shadow-primary);
  transform: translateY(-4px);
}

.home-news-img-wrapper {
  height: 192px;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.home-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.home-news-card:hover .home-news-img {
  transform: scale(1.05);
}

.home-news-content {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-news-meta-dot {
  width: 4px;
  height: 4px;
  background-color: var(--color-border);
}

.home-news-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  line-height: 1.4;
  transition: color 0.3s;
}

.home-news-card:hover .home-news-title {
  color: var(--color-primary);
}

.home-news-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-main);
  transition: color 0.3s;
}

.home-news-card:hover .home-news-link {
  color: var(--color-primary);
}

.home-news-link-icon {
  margin-left: 4px;
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.3s;
}

.home-news-card:hover .home-news-link-icon {
  opacity: 1;
  transform: translateX(4px);
}

.home-news-more {
  text-align: center;
  margin-top: 64px;
}

/* CTA Section */
.cta-section {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  margin-bottom: -1px;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #0B1528, rgba(22, 93, 255, 0.5), #0B1528);
  opacity: 0.88;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Im00MCA0MEgwVjAiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIi8+PC9zdmc+');
}

.cta-glow-1 {
  position: absolute;
  top: -192px;
  right: -192px;
  width: 384px;
  height: 384px;
  background-color: rgba(22, 93, 255, 0.4);
  border-radius: 50%;
  filter: blur(120px);
}

.cta-glow-2 {
  position: absolute;
  bottom: -192px;
  left: -192px;
  width: 384px;
  height: 384px;
  background-color: rgba(230, 106, 0, 0.1);
  border-radius: 50%;
  filter: blur(120px);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
}

.cta-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  color: white;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 48px;
  }
}

.cta-desc {
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 672px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cta-desc {
    font-size: 20px;
  }
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: var(--text-body);
  font-weight: bold;
  color: white;
  background: var(--gradient-secondary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-secondary);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-cta-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-secondary-lg);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  transition: background-color 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.btn-cta-secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

/* ============================================
   服务页样式 (services.html)
   ============================================ */
.services-page {
  flex: 1;
  width: 100%;
  background-color: white;
  font-family: var(--font-sans);
  color: var(--color-text-main);
}

/** 通用内页 Hero ��样式 **/
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  display: block;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #0B1528, rgba(22, 93, 255, 0.5), #0B1528);
  opacity: 0.88;
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Im00MCA0MEgwVjAiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIi8+PC9zdmc+');
}

.page-hero-glow {
  position: absolute;
  top: -192px;
  right: -192px;
  width: 384px;
  height: 384px;
  background-color: rgba(22, 93, 255, 0.4);
  border-radius: 50%;
  filter: blur(120px);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 24px 96px;
}

.page-hero-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 48px;
  }
}

.page-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.6;
}

.services-main {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 128px;
}

.service-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

@media (min-width: 1024px) {
  .service-section {
    flex-direction: row;
    gap: 96px;
  }
  .service-section.even {
    flex-direction: row-reverse;
  }
}

.service-card-col {
  flex: 1;
  width: 100%;
  position: relative;
}

.service-number {
  position: absolute;
  top: -64px;
  left: -32px;
  font-size: 160px;
  font-weight: bold;
  color: var(--color-bg-light);
  user-select: none;
  z-index: 0;
  line-height: 1;
  letter-spacing: -2px;
  transition: color 0.7s;
}

.service-section:hover .service-number {
  color: rgba(22, 93, 255, 0.05);
}

.service-card {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 360px;
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid rgba(229, 230, 235, 0.6);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .service-card {
    padding: var(--space-3xl);
  }
}

.service-card:hover {
  border-color: rgba(22, 93, 255, 0.3);
  box-shadow: var(--shadow-primary);
  transform: translateY(-6px);
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 192px;
  height: 192px;
  background: linear-gradient(to bottom right, rgba(22, 93, 255, 0.05), transparent);
  border-bottom-right-radius: 9999px;
  margin-left: -96px;
  margin-top: -96px;
  transition: transform 0.7s ease-out;
  z-index: 0;
}

.service-card:hover .service-card-bg {
  transform: scale(1.5);
}

.service-card-content {
  position: relative;
  z-index: 10;
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background-color: var(--color-bg-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  transition: all 0.5s;
}

.service-card:hover .service-icon-box {
  background-color: var(--color-primary);
  color: white;
  box-shadow: 0 8px 20px rgba(22, 93, 255, 0.2);
}

.service-title {
  font-size: var(--text-h2);
  font-weight: bold;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.service-card:hover .service-title {
  color: var(--color-primary);
}

.service-desc {
  font-size: 18px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.service-details-col {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .service-details-col {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 1024px) {
  .service-details-col {
    padding-left: 0;
    padding-right: 0;
  }
}

.service-details-heading {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.service-details-line {
  width: 32px;
  height: 2px;
  background-color: var(--color-primary);
}

.service-details-eyebrow {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin: 0;
}

.service-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-detail-item {
  display: flex;
  align-items: flex-start;
}

.service-detail-icon {
  margin-top: 6px;
  margin-right: 16px;
  flex-shrink: 0;
  color: var(--color-border);
  transition: all 0.3s;
}

.service-detail-item:hover .service-detail-icon {
  color: var(--color-secondary);
  transform: translateX(4px);
}

.service-detail-text {
  color: var(--color-text-main);
  font-weight: 300;
  font-size: 18px;
  transition: color 0.3s;
}

.service-detail-item:hover .service-detail-text {
  color: black;
}

.service-details-link-wrapper {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--color-border);
}

.service-details-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-main);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.service-details-link:hover {
  color: var(--color-primary);
}

.service-details-link-icon {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.service-details-link:hover .service-details-link-icon {
  transform: translateX(4px);
}

.services-cta-section {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  margin-bottom: -1px;
}

.services-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.services-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.services-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #0B1528, rgba(22, 93, 255, 0.5), #0B1528);
  opacity: 0.88;
}

.services-cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Im00MCA0MEgwVjAiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIi8+PC9zdmc+');
}

.services-cta-glow-1 {
  position: absolute;
  top: -192px;
  right: -192px;
  width: 384px;
  height: 384px;
  background-color: rgba(22, 93, 255, 0.4);
  border-radius: 50%;
  filter: blur(120px);
}

.services-cta-glow-2 {
  position: absolute;
  bottom: -192px;
  left: -192px;
  width: 384px;
  height: 384px;
  background-color: rgba(230, 106, 0, 0.1);
  border-radius: 50%;
  filter: blur(120px);
}

.services-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
}

.services-cta-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  color: white;
}

@media (min-width: 768px) {
  .services-cta-title {
    font-size: 48px;
  }
}

.services-cta-desc {
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 672px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-cta-desc {
    font-size: 20px;
  }
}

.services-cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-cta-actions {
    flex-direction: row;
  }
}

/* ============================================
   案例页样式 (cases.html)
   ============================================ */
.cases-page {
  flex: 1;
  width: 100%;
  background-color: var(--color-bg-light);
  font-family: var(--font-sans);
}

.cases-main {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.cases-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 80px;
}

.cases-filter-btn {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
}

.cases-filter-btn:hover {
  color: var(--color-text-main);
}

.cases-filter-btn.active {
  color: var(--color-primary);
}

.cases-filter-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 9999px;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
  }
}

.cases-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 12px;
  border: 1px solid rgba(229, 230, 235, 0.6);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cases-card:hover {
  border-color: rgba(22, 93, 255, 0.3);
  box-shadow: var(--shadow-primary);
  transform: translateY(-4px);
}

.cases-img-wrapper {
  position: relative;
  height: 256px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background-color: var(--color-bg-light);
}

@media (min-width: 640px) {
  .cases-img-wrapper {
    height: 320px;
  }
}

.cases-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-out;
}

.cases-card:hover .cases-img {
  transform: scale(1.03);
}

.cases-category {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-text-main);
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cases-content {
  padding-top: 40px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

@media (min-width: 768px) {
  .cases-content {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.cases-icon-btn {
  position: absolute;
  top: -40px;
  right: 32px;
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.5s;
}

.cases-card:hover .cases-icon-btn {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-8px);
}

.cases-card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  padding-right: 32px;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .cases-card-title {
    font-size: 30px;
  }
}

.cases-card:hover .cases-card-title {
  color: var(--color-primary);
}

.cases-card-desc {
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 48px;
}

.cases-card-footer {
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.cases-metrics-label {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cases-metrics-value {
  font-size: 30px;
  font-weight: bold;
  color: var(--color-secondary);
  letter-spacing: -0.5px;
  text-shadow: 0 0 20px rgba(255, 125, 0, 0.3);
}

.cases-card-link {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-muted);
  transition: color 0.3s;
  margin-bottom: 8px;
  cursor: pointer;
  text-decoration: none;
}

.cases-card:hover .cases-card-link {
  color: var(--color-primary);
}

.cases-card-link-arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.cases-card:hover .cases-card-link-arrow {
  transform: translateX(4px);
}

.cases-cta {
  position: relative;
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  overflow: hidden;
  background-color: var(--color-bg-dark);
  margin-top: 48px;
}

.cases-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cases-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cases-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #0B1528, rgba(22, 93, 255, 0.6), #0B1528);
  opacity: 0.95;
}

.cases-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: rgba(255, 125, 0, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.cases-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 672px;
  margin: 0 auto;
}

.cases-cta-title {
  font-size: 30px;
  font-weight: bold;
  color: white;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .cases-cta-title {
    font-size: 36px;
  }
}

.btn-cases-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: var(--text-body);
  font-weight: bold;
  color: white;
  background: var(--gradient-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  box-shadow: var(--shadow-secondary);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-cases-cta:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-secondary-lg);
}

.btn-cases-cta-icon {
  margin-left: 8px;
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.btn-cases-cta:hover .btn-cases-cta-icon {
  transform: translate(4px, -4px);
}

/* ============================================
   案例详情页样式 (case-detail.html)
   ============================================ */
.case-detail-page {
  flex: 1;
  width: 100%;
  background-color: var(--color-bg-light);
  font-family: var(--font-sans);
}

.case-detail-hero-content {
  position: relative;
  z-index: 10;
}

.btn-back-cases {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.3s;
}

.btn-back-cases:hover {
  color: white;
}

.btn-back-cases-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

.case-detail-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(22, 93, 255, 0.2);
  border: 1px solid rgba(22, 93, 255, 0.3);
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.case-detail-title {
  font-size: 30px;
  font-weight: bold;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  max-width: 896px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .case-detail-title {
    font-size: 48px;
  }
}

.case-detail-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.case-detail-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
}

.case-detail-main {
  padding-top: 80px;
  padding-bottom: 80px;
}

.case-detail-card {
  max-width: 896px;
  margin: 0 auto;
  background-color: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .case-detail-card {
    padding: 48px;
  }
}

.case-detail-main-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* 案例网站链接 */
.case-detail-website {
  margin-bottom: 32px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(22, 93, 255, 0.05) 0%, rgba(22, 93, 255, 0.02) 100%);
  border: 1px solid rgba(22, 93, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.case-detail-website:hover {
  background: linear-gradient(135deg, rgba(22, 93, 255, 0.08) 0%, rgba(22, 93, 255, 0.04) 100%);
  border-color: rgba(22, 93, 255, 0.25);
  transform: translateY(-1px);
}

.case-detail-website-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.case-detail-website-link:hover {
  color: var(--color-primary-dark);
}

.case-detail-website-link i {
  font-size: 16px;
  transition: transform 0.3s;
}

.case-detail-website-link:hover i {
  transform: translateX(3px);
}

.case-detail-website-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-detail-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.case-detail-section-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-detail-section-line {
  width: 4px;
  height: 24px;
  background-color: var(--color-primary);
  border-radius: 4px;
}

.case-detail-text {
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
  font-size: 18px;
}

.case-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-detail-list-item {
  display: flex;
  align-items: flex-start;
}

.case-detail-list-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.case-detail-results {
  background-color: var(--color-bg-light);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .case-detail-results {
    padding: 40px;
  }
}

.case-detail-results-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 32px;
}

.case-detail-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .case-detail-results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-detail-result-value {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 8px;
}

.case-detail-result-value.secondary {
  color: var(--color-secondary);
}

.case-detail-result-value.primary {
  color: var(--color-primary);
}

.case-detail-result-label {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-muted);
}

.case-detail-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.case-detail-prev,
.case-detail-next {
  flex: 1;
}

.case-detail-next {
  text-align: right;
}

.case-detail-footer-label {
  color: var(--color-text-main);
  font-weight: bold;
  margin-bottom: 8px;
}

.case-detail-prev-link,
.case-detail-next-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.case-detail-prev-link:hover,
.case-detail-next-link:hover {
  color: var(--color-primary-dark);
}

.case-detail-prev-link-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.case-detail-next-link-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

/* ============================================
   关于页样式 (about.html)
   ============================================ */
.about-page {
  flex: 1;
  width: 100%;
  background-color: white;
  color: var(--color-text-main);
  font-family: var(--font-sans);
}

.about-main {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
}

.about-intro-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 128px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-intro-section {
    flex-direction: row;
    gap: 96px;
  }
}

.about-intro-img-col {
  flex: 1;
  width: 100%;
  position: relative;
}

.about-intro-img-wrapper {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  .about-intro-img-wrapper {
    aspect-ratio: auto;
    height: 600px;
  }
}

.about-intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-img-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 21, 40, 0.1);
  mix-blend-mode: multiply;
}

.about-intro-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 192px;
  height: 192px;
  background-color: rgba(22, 93, 255, 0.05);
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
}

.about-intro-badge {
  display: none;
  position: absolute;
  top: 40px;
  right: -40px;
  background-color: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
  max-width: 280px;
}

@media (min-width: 768px) {
  .about-intro-badge {
    display: block;
  }
}

.about-intro-badge-number {
  font-size: 36px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.about-intro-badge-text {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: bold;
  line-height: 1.6;
}

.about-intro-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-intro-heading-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.about-intro-line {
  width: 32px;
  height: 2px;
  background-color: var(--color-primary);
}

.about-intro-eyebrow {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin: 0;
}

.about-intro-title {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: var(--color-text-main);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .about-intro-title {
    font-size: 36px;
  }
}

.about-intro-desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
  font-size: 18px;
}

.about-intro-stats {
  padding-top: 24px;
}

.about-intro-stats-inner {
  display: flex;
  gap: 48px;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.about-stat-number {
  font-size: 30px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-muted);
}

.about-guidelines-section {
  margin-bottom: 128px;
}

.about-section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
  text-align: center;
}

.about-guidelines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .about-guidelines-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guideline-card {
  position: relative;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background-color: white;
  border: 1px solid rgba(229, 230, 235, 0.6);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s;
  overflow: hidden;
}

.guideline-card:hover {
  border-color: rgba(22, 93, 255, 0.3);
  box-shadow: 0 20px 60px rgba(22, 93, 255, 0.06);
  transform: translateY(-4px);
}

.guideline-number {
  position: absolute;
  top: -40px;
  right: -32px;
  font-size: 120px;
  font-weight: bold;
  color: var(--color-bg-light);
  user-select: none;
  z-index: 0;
  line-height: 1;
  letter-spacing: -2px;
  transition: color 0.7s;
}

.guideline-card:hover .guideline-number {
  color: rgba(22, 93, 255, 0.1);
}

.guideline-content {
  position: relative;
  z-index: 10;
}

.guideline-ruler {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), rgba(22, 93, 255, 0.2));
  border-radius: 9999px;
  margin-bottom: var(--space-xl);
  transition: background-color 0.5s;
}

.guideline-card:hover .guideline-ruler {
  background-color: var(--color-primary);
}

.guideline-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.guideline-card:hover .guideline-title {
  color: var(--color-primary);
}

.guideline-desc {
  color: var(--color-text-light);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
}

.about-timeline-wrapper {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
}

.about-timeline-center-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--color-border);
}

@media (min-width: 768px) {
  .about-timeline-center-line {
    left: 50%;
    transform: translateX(-50%);
  }
}

.about-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .timeline-item {
    flex-direction: row;
    align-items: center;
  }
  .timeline-item.even {
    flex-direction: row-reverse;
  }
}

.timeline-empty-half {
  display: none;
}

@media (min-width: 768px) {
  .timeline-empty-half {
    display: block;
    flex: 1;
  }
}

.timeline-dot {
  position: absolute;
  left: 28px;
  top: 40px;
  transform: translate(-50%, 0);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
  }
}

.timeline-item:hover .timeline-dot {
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(22, 93, 255, 0.15);
  transform: translate(-50%, 0) scale(1.1);
}

@media (min-width: 768px) {
  .timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.timeline-dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-border);
  transition: background-color 0.3s;
}

@media (min-width: 768px) {
  .timeline-dot-inner {
    width: 12px;
    height: 12px;
  }
}

.timeline-item:hover .timeline-dot-inner {
  background-color: var(--color-primary);
}

.timeline-card-wrapper {
  flex: 1;
  width: 100%;
  padding-left: 80px;
  text-align: left;
}

@media (min-width: 768px) {
  .timeline-card-wrapper {
    padding-left: 0;
  }
  .timeline-item.even .timeline-card-wrapper {
    padding-right: 64px;
    text-align: right;
  }
  .timeline-item:not(.even) .timeline-card-wrapper {
    padding-left: 64px;
  }
}

.timeline-card {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 230, 235, 0.6);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .timeline-card {
    padding: var(--space-2xl);
  }
}

.timeline-item:hover .timeline-card {
  border-color: rgba(22, 93, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(22, 93, 255, 0.06);
}

.timeline-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: linear-gradient(to bottom right, rgba(22, 93, 255, 0.05), transparent);
  border-bottom-left-radius: 9999px;
  margin-right: -64px;
  margin-top: -64px;
  transition: transform 0.7s ease-out;
  z-index: 0;
}

.timeline-item:hover .timeline-card-bg {
  transform: scale(1.5);
}

.timeline-card-content {
  position: relative;
  z-index: 10;
}

.timeline-stage {
  font-size: 10px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .timeline-item.even .timeline-stage {
    justify-content: flex-end;
  }
}

.timeline-stage-line {
  width: 16px;
  height: 1px;
  background-color: rgba(22, 93, 255, 0.4);
  transition: background-color 0.3s;
}

.timeline-item:hover .timeline-stage-line {
  background-color: var(--color-primary);
}

.timeline-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .timeline-title {
    font-size: 24px;
  }
}

.timeline-item:hover .timeline-title {
  color: var(--color-primary);
}

.timeline-desc {
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   新闻页样式 (news.html)
   ============================================ */
.news-page {
  flex: 1;
  width: 100%;
  background-color: white;
  font-family: var(--font-sans);
  color: var(--color-text-main);
}

.news-main {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 80px;
}

.news-filter-btn {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
}

.news-filter-btn:hover {
  color: var(--color-text-main);
}

.news-filter-btn.active {
  color: var(--color-primary);
}

.news-filter-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 9999px;
}

.news-list {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background-color: white;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 230, 235, 0.6);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .news-card {
    flex-direction: row;
    gap: var(--space-2xl);
  }
}

.news-card:hover {
  border-color: rgba(22, 93, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary);
}

.news-card-img-wrapper {
  height: 256px;
  overflow: hidden;
  border-radius: 12px;
  background-color: var(--color-bg-light);
  position: relative;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news-card-img-wrapper {
    height: 320px;
    width: 41.666667%;
  }
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-out;
}

.news-card:hover .news-card-img {
  transform: scale(1.03);
}

.news-card-img-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 21, 40, 0.1);
  transition: background-color 0.5s;
}

.news-card:hover .news-card-img-overlay {
  background-color: transparent;
}

.news-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 24px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.news-card-category {
  color: var(--color-secondary);
  background-color: rgba(255, 125, 0, 0.1);
  padding: 4px 12px;
  border-radius: 9999px;
}

.news-card-date {
  color: var(--color-text-muted);
}

.news-card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  transition: color 0.3s;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .news-card-title {
    font-size: 30px;
  }
}

.news-card:hover .news-card-title {
  color: var(--color-primary);
}

.news-card-excerpt {
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
  font-size: 18px;
  margin-bottom: 32px;
}

.news-card-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-main);
  transition: color 0.3s;
  margin-top: auto;
}

.news-card:hover .news-card-link {
  color: var(--color-primary);
}

.news-card-link-icon {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.news-card:hover .news-card-link-icon {
  transform: translateX(8px);
}

.news-cta-section {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  margin-bottom: -1px;
}

.news-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.news-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.news-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #0B1528, rgba(22, 93, 255, 0.5), #0B1528);
  opacity: 0.88;
}

.news-cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Im00MCA0MEgwVjAiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIi8+PC9zdmc+');
}

.news-cta-glow-1 {
  position: absolute;
  top: -192px;
  right: -192px;
  width: 384px;
  height: 384px;
  background-color: rgba(22, 93, 255, 0.4);
  border-radius: 50%;
  filter: blur(120px);
}

.news-cta-glow-2 {
  position: absolute;
  bottom: -192px;
  left: -192px;
  width: 384px;
  height: 384px;
  background-color: rgba(230, 106, 0, 0.1);
  border-radius: 50%;
  filter: blur(120px);
}

.news-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
}

.news-cta-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  color: white;
}

@media (min-width: 768px) {
  .news-cta-title {
    font-size: 48px;
  }
}

.news-cta-desc {
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 672px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .news-cta-desc {
    font-size: 20px;
  }
}

.news-cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

@media (min-width: 640px) {
  .news-cta-actions {
    flex-direction: row;
  }
}

/* ============================================
   新闻详情页样式 (news-detail.html)
   ============================================ */
.news-detail-page {
  flex: 1;
  width: 100%;
  background-color: white;
  font-family: var(--font-sans);
  color: var(--color-text-main);
}

.news-detail-hero,
.case-detail-hero,
.template-detail-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 96px;
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  margin-top: -72px;
}

.news-detail-hero-bg,
.case-detail-hero-bg,
.template-detail-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.news-detail-hero-img,
.case-detail-hero-img,
.template-detail-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.news-detail-hero-overlay,
.case-detail-hero-overlay,
.template-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #0B1528, rgba(22, 93, 255, 0.5), #0B1528);
  opacity: 0.88;
}

.news-detail-hero-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
}

.btn-back-news {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.3s;
}

.btn-back-news:hover {
  color: white;
}

.btn-back-news-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

.news-detail-header-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.news-detail-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(22, 93, 255, 0.2);
  border: 1px solid rgba(22, 93, 255, 0.3);
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.news-detail-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.news-detail-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 300;
}

.news-detail-stat-icon {
  width: 14px;
  height: 14px;
}

.news-detail-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
}

.news-detail-title {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: white;
  line-height: 1.4;
  margin-bottom: 32px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .news-detail-title {
    font-size: 48px;
  }
}

.news-detail-excerpt {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.6;
  border-left: 4px solid var(--color-primary);
  padding-left: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  padding-bottom: 16px;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  margin: 0;
}

.news-detail-main {
  max-width: 768px;
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: 24px;
  padding-right: 24px;
}

.news-detail-content {
  color: var(--color-text-main);
}

.news-detail-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 40px;
}

.news-detail-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.news-detail-subtitle {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  margin-top: 48px;
  color: var(--color-text-main);
}

.news-detail-list {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 32px;
  color: var(--color-text-light);
}

.news-detail-list li {
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 12px;
}

.news-detail-callout {
  background-color: var(--color-bg-dark);
  color: white;
  padding: 32px;
  border-radius: 12px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.news-detail-callout-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.news-detail-callout-text {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.news-detail-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 640px) {
  .news-detail-footer {
    flex-direction: row;
  }
}

.news-detail-share {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news-detail-share-label {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-main);
}

.btn-share {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  background: white;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-share:hover {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-share-icon {
  width: 16px;
  height: 16px;
}

.btn-news-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background-color: var(--color-bg-dark);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-news-cta:hover {
  background-color: var(--color-primary);
}

/* ============================================
   联系页样式 (contact.html)
   ============================================ */
.contact-page {
  flex: 1;
  width: 100%;
  background-color: var(--color-bg-light);
  font-family: var(--font-sans);
  color: var(--color-text-main);
  min-height: 100vh;
}

.contact-main {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-5xl);
}

.contact-card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .contact-card {
    flex-direction: row;
  }
}

.contact-form-section {
  padding: 48px;
}

@media (min-width: 768px) {
  .contact-form-section {
    padding: 80px;
  }
}

@media (min-width: 1024px) {
  .contact-form-section {
    width: 60%;
  }
}

.contact-section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-label {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.contact-input {
  width: 100%;
  background-color: var(--color-bg-light);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 16px 24px;
  color: var(--color-text-main);
  outline: none;
  font-weight: 300;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 16px;
}

.contact-textarea {
  resize: none;
  min-height: 120px;
}

.contact-input:hover {
  border-color: var(--color-border);
}

.contact-input:focus {
  border-color: var(--color-primary);
  background-color: white;
}

.contact-submit-btn {
  background: var(--gradient-secondary);
  color: white;
  padding: 20px 40px;
  border-radius: var(--radius-sm);
  font-weight: bold;
  transition: all 0.3s;
  box-shadow: var(--shadow-secondary);
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: var(--text-body);
}

@media (min-width: 768px) {
  .contact-submit-btn {
    width: auto;
    align-self: flex-start;
  }
}

.contact-submit-btn:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-secondary-lg);
}

.contact-info-section {
  background-color: var(--color-bg-light);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .contact-info-section {
    padding: 80px;
  }
}

@media (min-width: 1024px) {
  .contact-info-section {
    width: 40%;
    border-left: 1px solid var(--color-border);
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info-icon-wrapper {
  color: var(--color-text-muted);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.contact-info-value {
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
}

.contact-info-footer {
  padding-top: 48px;
  margin-top: 48px;
  border-top: 1px solid var(--color-border);
}

.contact-info-notes {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.5px;
}

/* ============================================
   模板页样式 (templates.html)
   ============================================ */
.templates-page {
  flex: 1;
  width: 100%;
  background-color: var(--color-bg-light);
  font-family: var(--font-sans);
}



.templates-main {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

.templates-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 80px;
}

.templates-filter-btn {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
}

.templates-filter-btn:hover {
  color: var(--color-text-main);
}

.templates-filter-btn.active {
  color: var(--color-primary);
}

.templates-filter-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 9999px;
}

.templates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  row-gap: 64px;
}

@media (min-width: 768px) {
  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .templates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.template-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229, 230, 235, 0.6);
  transition: all 0.5s;
  position: relative;
}

.template-card:hover {
  border-color: rgba(22, 93, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary);
}

.template-card-img-wrapper {
  position: relative;
  height: 256px;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-bg-light);
}

.template-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-out;
}

.template-card:hover .template-card-img {
  transform: scale(1.05);
}

.template-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.template-card:hover .template-card-img-overlay {
  opacity: 1;
}

.template-card-category {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-text-main);
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.template-card-content {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.template-card-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.template-card:hover .template-card-title {
  color: var(--color-primary);
}

.template-card-desc {
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 24px;
}

.template-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.template-card-feature {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--color-bg-light);
  color: var(--color-text-light);
  font-size: 12px;
  font-weight: bold;
  border-radius: 9999px;
}

.template-card-footer {
  padding-top: 24px;
  border-top: 1px solid var(--color-bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.template-card-price {
  display: flex;
  flex-direction: column;
}

.template-card-price-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.template-card-price-value {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-secondary);
  letter-spacing: -0.5px;
}

.template-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-text-main);
  text-decoration: none;
  transition: color 0.3s;
}

.template-card-link:hover {
  color: var(--color-primary);
}

.template-card-link-icon {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.template-card-link:hover .template-card-link-icon {
  transform: translateX(6px);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 96px;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background-color: white;
  color: var(--color-text-main);
  cursor: pointer;
  transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination-btn:disabled {
  cursor: not-allowed;
  color: #E5E6EB;
  border-color: #E5E6EB;
}

.pagination-btn-active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.pagination-btn-active:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: white;
}

.pagination-btn-page {
  background-color: white;
  color: var(--color-text-muted);
}

.pagination-dots {
  color: var(--color-text-muted);
  padding: 0 8px;
}

.pagination-btn-arrow {
  padding: 0 10px;
}

/* CTA Section */
.templates-cta-section {
  position: relative;
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
  overflow: hidden;
  background-color: var(--color-bg-dark);
  margin-top: 48px;
  margin-bottom: -1px;
}

.templates-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.templates-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.templates-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #0B1528, rgba(22, 93, 255, 0.6), #0B1528);
  opacity: 0.95;
}

.templates-cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Im00MCA0MEgwVjAiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIi8+PC9zdmc+');
}

.templates-cta-glow-1 {
  position: absolute;
  top: -192px;
  right: -192px;
  width: 384px;
  height: 384px;
  background-color: rgba(22, 93, 255, 0.4);
  border-radius: 50%;
  filter: blur(120px);
}

.templates-cta-glow-2 {
  position: absolute;
  bottom: -192px;
  left: -192px;
  width: 384px;
  height: 384px;
  background-color: rgba(230, 106, 0, 0.1);
  border-radius: 50%;
  filter: blur(120px);
}

.templates-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
}

.templates-cta-title {
  font-size: 30px;
  font-weight: bold;
  color: white;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .templates-cta-title {
    font-size: 48px;
  }
}

.templates-cta-desc {
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 672px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .templates-cta-desc {
    font-size: 20px;
  }
}

.templates-cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

@media (min-width: 640px) {
  .templates-cta-actions {
    flex-direction: row;
  }
}

/* ============================================
   模板详情页样式 (template-detail.html)
   ============================================ */

/* TemplateDetail Page Styles */
.template-detail-page {
  flex: 1;
  width: 100%;
  background-color: var(--color-bg-light);
  font-family: var(--font-sans);
}

.template-detail-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
}

.btn-back-templates {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.3s;
}

.btn-back-templates:hover {
  color: white;
}

.btn-back-templates-icon {
  margin-right: 8px;
  width: 16px;
  height: 16px;
}

.template-detail-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 16px;
}

.template-detail-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
}

.template-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background-color: rgba(22, 93, 255, 0.2);
  border: 1px solid rgba(22, 93, 255, 0.3);
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.template-detail-title {
  font-size: 30px;
  font-weight: bold;
  color: white;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .template-detail-title {
    font-size: 48px;
  }
}

.template-detail-main {
  max-width: 1152px;
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: 24px;
  padding-right: 24px;
}

.template-detail-card {
  background-color: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .template-detail-card {
    padding: 48px;
  }
}

.template-detail-main-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 48px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.template-detail-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.template-detail-content section {
  display: flex;
  flex-direction: column;
}

.template-detail-section-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.template-detail-section-line {
  width: 4px;
  height: 24px;
  background-color: var(--color-primary);
  border-radius: 4px;
}

.template-detail-text {
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
  font-size: 18px;
}

.template-detail-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .template-detail-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.template-detail-feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background-color: var(--color-bg-light);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all 0.3s;
}

.template-detail-feature-item:hover {
  border-color: rgba(22, 93, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.template-detail-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.template-detail-feature-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.template-detail-feature-desc {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 300;
  line-height: 1.6;
}

.template-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.template-detail-list li {
  display: flex;
  align-items: flex-start;
  color: var(--color-text-light);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
}

.template-detail-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  margin-right: 16px;
  margin-top: 10px;
  flex-shrink: 0;
}

.template-detail-pricing {
  margin-top: 16px;
}

.template-detail-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .template-detail-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.template-detail-pricing-card {
  background-color: var(--color-bg-light);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.template-detail-pricing-card:hover {
  border-color: rgba(22, 93, 255, 0.3);
  box-shadow: var(--shadow-sm);
}

.template-detail-pricing-card.featured {
  background-color: var(--color-bg-dark);
  border-color: var(--color-primary);
  color: white;
}

.template-detail-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-secondary);
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 16px;
  border-radius: 9999px;
}

.template-detail-pricing-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  color: var(--color-text-main);
}

.template-detail-pricing-card.featured .template-detail-pricing-name {
  color: white;
}

.template-detail-pricing-price {
  font-size: 36px;
  font-weight: bold;
  color: var(--color-secondary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.template-detail-pricing-card.featured .template-detail-pricing-price {
  color: var(--color-secondary);
}

.template-detail-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.template-detail-pricing-features li {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 300;
}

.template-detail-pricing-card.featured .template-detail-pricing-features li {
  color: rgba(255, 255, 255, 0.8);
}

.template-detail-pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background-color: var(--color-primary);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(22, 93, 255, 0.3);
  margin-top: auto;
}

.template-detail-pricing-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.template-detail-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

/* ============================================
   模板详情页 - 模板展示
   ============================================ */

.template-detail-showcase {
  margin-top: 48px;
}

.template-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .template-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.template-showcase-item {
  display: block;
}

.template-showcase-img-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.template-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.template-showcase-img-wrapper:hover .template-showcase-img {
  transform: scale(1.05);
}

.template-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.template-showcase-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--color-primary);
  color: white;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
}

.template-showcase-desc {
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.template-showcase-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}

.template-showcase-img-wrapper:hover .template-showcase-zoom {
  opacity: 1;
}

/* ============================================
   图片灯箱样式
   ============================================ */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.88);
}

.lightbox.active {
  display: flex;
}

.lightbox-img-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 180px);
  max-height: calc(100vh - 80px);
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: 8px;
  display: block;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
  margin-top: 16px;
  color: white;
  font-size: 14px;
  text-align: center;
  max-width: 600px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: white;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

@media (max-width: 767px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   模板详情页 - 相关案例
   ============================================ */

.template-detail-related-cases {
  margin-top: 48px;
}

.related-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .related-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-case-card {
  display: block;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.related-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(22, 93, 255, 0.2);
}

.related-case-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.related-case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.related-case-card:hover .related-case-img {
  transform: scale(1.08);
}

.related-case-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 21, 40, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.related-case-card:hover .related-case-overlay {
  opacity: 1;
}

.related-case-view {
  color: white;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.related-case-view:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.related-case-content {
  padding: 20px;
}

.related-case-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  background-color: var(--color-bg-blue-light);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.related-case-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 8px;
  line-height: 1.4;
}

.related-case-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.template-detail-footer-label {
  color: var(--color-text-main);
  font-weight: bold;
  font-size: 18px;
}

.template-detail-next-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.template-detail-next-link:hover {
  color: var(--color-primary-dark);
}

.template-detail-next-link-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.3s;
}

.template-detail-next-link:hover .template-detail-next-link-icon {
  transform: translateX(4px);
}

/* ============================================
   模板详情页 - 右侧边栏
   ============================================ */

.template-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .template-detail-layout {
    grid-template-columns: 1fr 300px;
    align-items: stretch;
  }
}

/* 左侧主内容 */
.template-detail-layout .template-detail-main {
  min-width: 0;
  padding: 0;
}

/* 右侧边栏 */
.template-detail-sidebar {
  width: 100%;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .template-detail-sidebar {
    width: 300px;
    padding-bottom: 64px;
    position: relative;
  }
}

/* 边栏 sticky 包装器 - 使用 sticky 定位实现悬浮 */
.sidebar-sticky-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 悬浮效果由JS控制，不设置CSS sticky */

/* 边栏卡片 */
.sidebar-card {
  background-color: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid var(--color-border);
  transition: all 0.3s;
}

.sidebar-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* 悬浮卡片效果 */
.sidebar-card-float {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-card-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* 快速咨询卡片 - 更紧凑协调的设计 */
.sidebar-card-consult {
  background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
  border: 1px solid rgba(22, 93, 255, 0.15);
}

.sidebar-card-consult .sidebar-title-icon {
  background-color: rgba(22, 93, 255, 0.15);
  color: var(--color-primary);
}

.sidebar-card-consult .sidebar-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--color-text-light);
}

.sidebar-card-consult .sidebar-cta-btn {
  background: var(--gradient-primary);
  box-shadow: 0 4px 14px rgba(22, 93, 255, 0.25);
}

/* 查看演示 - 更紧凑 */
.sidebar-demo-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  cursor: pointer;
}

.sidebar-demo-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.sidebar-demo-img:hover img {
  transform: scale(1.05);
}

.sidebar-demo-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar-demo-img:hover .sidebar-demo-overlay {
  opacity: 1;
}

.sidebar-demo-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  border: none;
  color: var(--color-primary);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s;
}

.sidebar-demo-btn:hover {
  transform: scale(1.1);
  background-color: var(--color-primary);
  color: white;
}

.sidebar-demo-action {
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: var(--color-primary);
  color: white;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.sidebar-demo-action:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
}

/* 边栏标题 */
.sidebar-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-title-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: rgba(22, 93, 255, 0.1);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  vertical-align: middle;
  line-height: 1;
}

.sidebar-title-icon i {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

/* 方案对比 */
.sidebar-compare-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.sidebar-compare-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  background-color: var(--color-bg-light);
  border: 1px solid transparent;
  transition: all 0.3s;
}

.sidebar-compare-item:hover {
  border-color: var(--color-border);
}

.sidebar-compare-item.featured {
  background-color: rgba(22, 93, 255, 0.05);
  border-color: rgba(22, 93, 255, 0.2);
}

.sidebar-compare-label {
  font-size: 13px;
  color: var(--color-text-main);
  font-weight: 500;
}

.sidebar-compare-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: var(--color-primary);
  color: white;
  font-size: 10px;
  font-weight: 500;
  margin-left: 4px;
}

.sidebar-compare-price {
  font-size: 14px;
  font-weight: bold;
  color: var(--color-primary);
}

.sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: var(--color-primary);
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.sidebar-cta-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
}

/* 联系方式 - 更紧凑 */
.sidebar-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(22, 93, 255, 0.08);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  vertical-align: middle;
  line-height: 1;
}

.sidebar-contact-icon i {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

.sidebar-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sidebar-contact-label {
  font-size: 11px;
  color: var(--color-text-light);
}

.sidebar-contact-value {
  font-size: 13px;
  color: var(--color-text-main);
  font-weight: 500;
}

/* ============================================
   演示弹窗
   ============================================ */

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.demo-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.demo-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}

.demo-modal-content {
  position: relative;
  background-color: white;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.demo-modal.is-open .demo-modal-content {
  transform: scale(1) translateY(0);
}

.demo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.05);
  border: none;
  color: var(--color-text-main);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
}

.demo-modal-close:hover {
  background-color: rgba(0,0,0,0.1);
  transform: rotate(90deg);
}

.demo-modal-header {
  padding: 32px 32px 0;
  text-align: center;
}

.demo-modal-header h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.demo-modal-header p {
  font-size: 14px;
  color: var(--color-text-light);
}

.demo-modal-body {
  padding: 24px 32px 32px;
}

.demo-modal-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.demo-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.demo-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.demo-modal-btn.primary {
  background-color: var(--color-primary);
  color: white;
}

.demo-modal-btn.primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 93, 255, 0.3);
}

.demo-modal-btn.secondary {
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.demo-modal-btn.secondary:hover {
  background-color: var(--color-border);
  transform: translateY(-2px);
}

/* ============================================
   右侧悬浮咨询按钮（桌面端）
   ============================================ */
.float-sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(22, 93, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 20px;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(22, 93, 255, 0.45);
}

.float-panel {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 14px;
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.float-panel::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid white;
}

.float-btn:hover .float-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.float-panel img {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto 8px;
  border-radius: 8px;
  object-fit: contain;
}

.float-panel p {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.float-top {
  background: white;
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.float-top:hover {
  background: var(--color-bg-light);
}

/* �动端隐藏桌面悬浮按钮 */
@media (max-width: 1023px) {
  .float-sidebar {
    display: none;
  }
}

/* ============================================
   移动端底部悬浮栏
   ============================================ */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  border-top: 1px solid var(--color-border);
  display: none;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}

.mobile-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 11px;
  gap: 4px;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.mobile-bar-item i {
  font-size: 20px;
}

.mobile-bar-item:active,
.mobile-bar-item:hover {
  color: var(--color-primary);
}

/* 微信二维码模态框 */
.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.wechat-modal.active {
  display: flex;
}

.wechat-modal-content {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  margin: auto;
  animation: scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wechat-modal-content img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  margin: 0 auto 16px;
  display: block;
  object-fit: contain;
}

.wechat-modal-content h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--color-text-main);
}

.wechat-modal-content p {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.wechat-modal-close {
  padding: 10px 32px;
  border-radius: 8px;
  background: var(--color-primary);
  color: white;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.wechat-modal-close:hover {
  background: var(--color-primary-dark);
}

@media (max-width: 1023px) {
  .mobile-bottom-bar {
    display: flex;
  }
  
  /* 移动端底部栏遮挡内容时增加padding */
  body {
    padding-bottom: 60px;
  }
}

/* ============================================
   面包屑导航
   ============================================ */
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb-separator {
  color: var(--color-text-light);
}

.breadcrumb-current {
  color: var(--color-text-main);
  font-weight: 500;
}

/* ============================================
   客户评价模块
   ============================================ */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, white 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-text-main);
  font-size: 15px;
}

.testimonial-company {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

/* ============================================
   移动端Hero响应式优化
   ============================================ */
@media (max-width: 767px) {
  .page-hero {
    min-height: 280px;
  }

  .case-detail-hero,
  .news-detail-hero,
  .template-detail-hero {
    min-height: 320px;
  }

  .page-hero-title {
    font-size: 24px;
  }

  .case-detail-title,
  .news-detail-title,
  .template-detail-title {
    font-size: 20px;
  }

  .page-hero-desc {
    font-size: 14px;
  }
}

/* ============================================
   导航栏搜索按钮
   ============================================ */
.nav-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-text-light);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  margin-left: 8px;
}

.nav-search-btn:hover {
  color: var(--color-primary);
  background: rgba(22, 93, 255, 0.08);
}

/* ============================================
   搜索弹窗
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 21, 40, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.search-modal {
  width: 90%;
  max-width: 640px;
  background: white;
  border-radius: 16px;
  padding: 24px 24px 32px;
  position: relative;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.search-overlay.is-active .search-modal {
  transform: translateY(0) scale(1);
}

.search-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}

.search-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.search-form {
  width: 100%;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-icon {
  position: absolute;
  left: 16px;
  color: var(--color-text-light);
  font-size: 18px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 56px;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 0 16px 0 48px;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-main);
  background: var(--color-bg-light);
  outline: none;
  transition: border-color 0.3s;
}

.search-input:focus {
  border-color: var(--color-primary);
  background: white;
}

.search-input::placeholder {
  color: var(--color-text-light);
}

.search-tags {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.search-tags-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-right: 4px;
}

.search-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--color-bg-light);
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.search-tag:hover {
  color: var(--color-primary);
  background: rgba(22, 93, 255, 0.08);
  border-color: rgba(22, 93, 255, 0.2);
}

/* 移动端搜索弹窗适配 */
@media (max-width: 767px) {
  .search-overlay {
    padding-top: 12vh;
    align-items: flex-start;
  }

  .search-modal {
    width: 95%;
    padding: 20px 20px 24px;
    border-radius: 12px;
  }

  .search-close-btn {
    top: -36px;
    right: 4px;
  }

  .search-input {
    height: 48px;
    font-size: 16px;
  }
}

/* ============================================
   搜索结果页
   ============================================ */
.search-page {
  min-height: 60vh;
  padding-bottom: 80px;
}

.search-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 96px;
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  margin-top: -72px;
}

.search-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.search-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.search-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #0B1528, rgba(22, 93, 255, 0.5), #0B1528);
  opacity: 0.88;
}

.search-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Im00MCA0MEgwVjAiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIi8+PC9zdmc+');
}

.search-hero-glow {
  position: absolute;
  top: -192px;
  right: -192px;
  width: 384px;
  height: 384px;
  background-color: rgba(22, 93, 255, 0.4);
  border-radius: 50%;
  filter: blur(120px);
}

.search-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.search-hero-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .search-hero-title {
    font-size: 48px;
  }
}

.search-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.search-results-header {
  margin-bottom: 24px;
}

.search-results-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.search-results-count {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.search-page-query {
  color: var(--color-primary);
}

.search-page-form {
  margin-bottom: 0;
}

.search-page-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.search-page-input-icon {
  position: absolute;
  left: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  pointer-events: none;
}

.search-page-input {
  width: 100%;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0 100px 0 44px;
  font-size: 16px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: all 0.3s;
}

.search-page-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-page-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.search-page-submit {
  position: absolute;
  right: 4px;
  height: 40px;
  padding: 0 20px;
  border: none;
  border-radius: 8px;
  background: var(--color-primary);
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.search-page-submit:hover {
  background: var(--color-primary-dark);
}

.search-results-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.search-stats {
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--color-bg-light);
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.search-stats strong {
  color: var(--color-primary);
  font-weight: 600;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-result-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: white;
  transition: all 0.3s;
}

.search-result-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(22, 93, 255, 0.08);
  transform: translateY(-2px);
}

.search-result-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-content {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.search-result-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.search-result-title a:hover {
  color: var(--color-primary);
}

.search-result-title .keyword-highlight {
  color: var(--color-primary);
  font-weight: 700;
}

.search-result-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.search-result-desc .keyword-highlight {
  color: var(--color-primary);
  font-weight: 600;
  background: rgba(22, 93, 255, 0.08);
  padding: 0 4px;
  border-radius: 3px;
}

.search-result-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--color-text-light);
}

.search-result-meta i {
  margin-right: 4px;
}

.search-no-results {
  text-align: center;
  padding: 80px 20px;
}

.search-no-results i {
  font-size: 48px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.search-no-results p {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.search-no-results span {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.search-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .search-results-title {
    font-size: 18px;
  }

  .search-result-item {
    padding: 16px;
  }

  .search-result-title {
    font-size: 16px;
  }
}