/*
Theme Name: 潮视新创 GEO
Theme URI: https://geoxc.cn
Description: 潮视新创官方WordPress主题 — GEO生成式引擎优化服务商
Version: 1.0
Author: 潮视新创
Author URI: https://geoxc.cn
License: GPL-2.0+
Text Domain: chaoshi-geo
*/

/* ============================================
   潮视新创 — 明亮专业设计系统
   GEO生成式引擎优化服务商官网
   ============================================ */

/* ===== CSS Variables ===== */
:root {
  /* 主色调 — 专业蓝 */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-lighter: #dbeafe;

  /* 强调色 — 琥珀金 */
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  --accent-lighter: #fef3c7;

  /* 背景系统 — 白色系 */
  --bg-white: #ffffff;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-surface: #f1f5f9;
  --bg-elevated: #e2e8f0;
  --bg-dark-section: #0f172a;

  /* 文字颜色 */
  --text-primary: #0f172a;
  --text-heading: #0c1929;
  --text-secondary: #475569;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  --text-on-dark: #e2e8f0;

  /* 边框 */
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --border-glow: #93c5fd;

  /* 渐变 */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-hero: linear-gradient(160deg, #eff6ff 0%, #f8fafc 40%, #ffffff 100%);
  --gradient-dark: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);

  /* 阴影 */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-gold: 0 8px 32px rgba(245, 158, 11, 0.2);
  --shadow-card: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.05);

  /* 圆角 */
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* 容器 */
  --container: 1260px;

  /* 过渡 */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-page);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Dot-grid decorative background */
.dot-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, var(--primary) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.03;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

/* ===== Container ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Section ===== */
.section {
  padding: 88px 0;
}

.section-light { background: var(--bg-page); }
.section-section { background: var(--bg-surface); }
.section-gradient { background: linear-gradient(160deg, var(--bg-white) 0%, var(--bg-page) 100%); }
.section-dark { background: var(--bg-dark-section); color: var(--text-on-dark); }

/* ===== Section Divider ===== */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-lighter);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-header .section-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.section-header h2 .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2 .highlight-gold {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  border-bottom-color: transparent;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 21px;
  font-weight: 800;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.3px;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.nav-logo .logo-text {
  color: var(--text-heading);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover { color: var(--text-heading); }

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s;
  opacity: 0.6;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  background: #fff;
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  padding: 8px 0;
  z-index: 1001;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: var(--primary-lighter);
  color: var(--primary);
}

.nav-cta {
  background: var(--gradient-primary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  color: #fff !important;
  opacity: 0.95;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero — 首页 ===== */
.hero {
  background: var(--gradient-hero);
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--primary-dark);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.hero-badge span:first-child {
  background: var(--gradient-primary);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -1px;
  color: var(--text-heading);
}

.hero h1 .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 750px;
  margin: 0 auto 44px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: #fff;
  opacity: 0.95;
}

.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-page);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  color: var(--primary);
}

.btn-dark {
  background: var(--bg-dark-section);
  color: #fff;
}

.btn-dark:hover {
  transform: translateY(-2px);
  color: #fff;
  opacity: 0.9;
}

.btn-gold {
  background: var(--gradient-accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.3);
  color: #fff;
}

.btn-xl {
  padding: 18px 48px;
  font-size: 17px;
  border-radius: var(--radius);
}

/* ===== Hero Stats ===== */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-stat .stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
  letter-spacing: -1px;
}

.hero-stat .stat-num .stat-suffix {
  font-size: 24px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ===== Page Banner (sub pages) ===== */
.page-banner {
  background: var(--gradient-hero);
  padding: 130px 0 72px;
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.page-banner h1 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
  color: var(--text-heading);
}

.page-banner p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== Cards Grid ===== */
.grid {
  display: grid;
  gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Card ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-lighter);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 22px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: var(--primary-lighter);
  border-color: var(--border-glow);
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  line-height: 1.4;
}

.card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.card .card-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.card .card-link:hover { color: var(--primary-dark); gap: 10px; }

/* ===== Product Cards ===== */
.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-glow);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}

.product-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.78;
}

/* Product CTA */
.product-cta {
  margin-top: 44px;
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section Alt - 交替背景 */
.section-alt {
  background: var(--bg-surface);
}

/* Module Section - 用于数字员工等页面的子模块分隔 */
.module-section {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}

.module-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.module-section .section-header {
  margin-bottom: 36px;
}

.module-section .section-header h2 {
  font-size: 32px;
}

/* Module number badge */
.module-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-lighter);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* ===== Service Detail Card ===== */
.service-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-bottom: 36px;
}

.service-detail h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.service-detail .service-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-lighter);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.service-detail h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 28px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-detail h4::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.service-detail p,
.service-detail li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
}

.service-detail .info-list { margin: 18px 0; }

.service-detail .info-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.service-detail .info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* ===== Industry Card ===== */
.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.industry-card:hover::before { transform: scaleX(1); }

.industry-card .industry-icon { font-size: 34px; margin-bottom: 18px; }

.industry-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.industry-card .industry-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ===== Process Steps ===== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.process-step {
  flex: 1;
  min-width: 170px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.process-step .step-num {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 18px;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Case Study ===== */
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 36px;
  transition: var(--transition);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
}

.case-card .case-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.case-card .case-badge {
  background: var(--gradient-primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.case-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
}

.case-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.case-info-item {
  padding: 18px 22px;
  background: var(--bg-page);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.case-info-item .info-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.case-info-item .info-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.case-results {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.case-result-item { text-align: center; }

.case-result-item .result-num {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-result-item .result-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
}

/* ===== Testimonial ===== */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.testimonial-card .quote-icon {
  font-size: 48px;
  color: var(--primary-light);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}

.testimonial-card .testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 22px;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}

.testimonial-card .author-info .author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
}

.testimonial-card .author-info .author-role {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== FAQ Accordion ===== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-category { margin-bottom: 44px; }

.faq-category-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 18px;
  padding-left: 18px;
  border-left: 3px solid var(--primary);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--bg-card);
}

.faq-item.active {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.faq-question:hover { background: var(--bg-page); }
.faq-item.active .faq-question { color: var(--primary); }

.faq-toggle {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  font-weight: 300;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 26px 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ===== Knowledge Base ===== */
.kb-article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  cursor: pointer;
}

.kb-article:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.kb-article .kb-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.kb-article h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.5;
}

.kb-article p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kb-article .kb-meta {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ===== Advantage List ===== */
.advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.advantage-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.advantage-item:hover {
  box-shadow: var(--shadow);
}

.advantage-item .advantage-num {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.advantage-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.advantage-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Pricing / Package ===== */
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: var(--transition);
  position: relative;
}

.package-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow-gold);
  background: linear-gradient(160deg, #fffbf0 0%, #ffffff 100%);
}

.package-card.featured::before {
  content: "热门推荐";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.package-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package-card.featured:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(245, 158, 11, 0.2);
}

.package-card .package-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.package-card .package-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.package-card .package-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.package-card .package-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== Comparison Table ===== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
  padding: 22px 26px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--bg-page);
  font-weight: 700;
  color: var(--text-heading);
  font-size: 15px;
}

.comparison-table td {
  color: var(--text-secondary);
  line-height: 1.75;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table .col-highlight {
  color: var(--accent-dark);
  font-weight: 600;
}

/* ===== Info Block ===== */
.info-block {
  max-width: 860px;
  margin: 0 auto;
}

.info-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 36px 0 18px;
}

.info-block h2:first-child { margin-top: 0; }

.info-block h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-heading);
  margin: 28px 0 14px;
}

.info-block p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 18px;
}

.info-block ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.info-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* ===== Pain Points ===== */
.pain-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.pain-point {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid #ef4444;
  border-radius: var(--radius);
  padding: 26px;
  transition: var(--transition);
}

.pain-point:hover { box-shadow: var(--shadow); border-left-color: #dc2626; }

.pain-point h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.pain-point p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Matrix / Layer ===== */
.matrix-layer {
  display: flex;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.matrix-layer .layer-num {
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.matrix-layer .layer-content {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.matrix-layer .layer-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.matrix-layer .layer-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--bg-dark-section);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
  color: #fff;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-section .btn { position: relative; z-index: 1; }

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark-section);
  color: var(--text-on-dark);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-brand .footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand .footer-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; color: #94a3b8; }

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  font-size: 14px;
  color: #94a3b8;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.footer-bottom p { margin-bottom: 4px; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 16px 0;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb ul li a { color: var(--text-secondary); }
.breadcrumb ul li:last-child { color: var(--accent-dark); font-weight: 500; }

.breadcrumb ul li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--border);
}

/* ===== Form Elements ===== */
input, select, textarea {
  background: var(--bg-page);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: inherit;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

input::placeholder, textarea::placeholder { color: var(--text-light); }

/* ===== Fade In Up Animation ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.7s ease forwards; }

/* ===== Number Counter ===== */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.counter-anim { animation: countUp 1s ease forwards; }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-32 { margin-top: 36px; }
.mb-32 { margin-bottom: 36px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.12);
  transform: scale(1.03);
  background: linear-gradient(170deg, #fffbf0 0%, #ffffff 50%, #fefce8 100%);
  z-index: 2;
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 0 48px rgba(245, 158, 11, 0.2);
}

.pricing-card-premium { border-color: rgba(79, 70, 229, 0.2); }

.pricing-ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(45deg);
  z-index: 3;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.pricing-card-header {
  padding: 40px 32px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.pricing-tier {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-lighter);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.featured-tier {
  color: var(--accent-dark);
  background: var(--accent-lighter);
  border-color: rgba(245, 158, 11, 0.2);
}

.premium-tier {
  color: #4f46e5;
  background: #eef2ff;
  border-color: rgba(79, 70, 229, 0.2);
}

.pricing-card-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-amount { margin-bottom: 18px; }

.pricing-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-heading);
  vertical-align: top;
  margin-right: 2px;
}

.pricing-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1;
  letter-spacing: -2px;
}

.pricing-card-featured .pricing-number {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-premium .pricing-number {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-period {
  font-size: 15px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.pricing-badge-strip {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-badge-strip span {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  background: var(--primary-lighter);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.featured-strip span {
  background: var(--accent-lighter);
  color: var(--accent-dark);
  border-color: rgba(245, 158, 11, 0.2);
}

.premium-strip span {
  background: #eef2ff;
  color: #4f46e5;
  border-color: rgba(79, 70, 229, 0.2);
}

.pricing-card-body {
  padding: 28px 32px;
  flex: 1;
}

.pricing-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.pricing-features-list { list-style: none; margin-bottom: 24px; }

.pricing-features-list li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.pricing-features-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-features-list li.star::before { content: '★'; color: var(--accent); }
.pricing-features-list li.crown::before { content: '◆'; color: #4f46e5; }

.feature-detail { font-size: 12px; color: var(--text-light); margin-left: 8px; }

.pricing-fit {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  background: var(--bg-page);
  padding: 14px;
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--primary-lighter);
}

.pricing-card-footer {
  padding: 24px 32px 32px;
  text-align: center;
}

.pricing-card-footer-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

.pricing-compare { font-size: 14px; }
.pricing-compare .col-basic { color: var(--primary); }
.pricing-compare .col-featured { color: var(--accent-dark); font-weight: 600; background: rgba(245, 158, 11, 0.03); }
.pricing-compare .col-premium { color: #4f46e5; }

.table-badge {
  display: inline-block;
  font-size: 11px;
  background: var(--gradient-accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-left: 6px;
}

.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-card-num {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
}

.step-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   TEAM PAGE
   ============================================ */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover { box-shadow: var(--shadow-lg); }

.stat-card-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.stat-card-num.gold {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.stat-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Team member card */
.team-member-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.team-member-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.team-member-card.gold-border {
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.06);
}

.team-member-layout { display: flex; gap: 0; }
.team-member-layout.reverse { flex-direction: row-reverse; }

.team-member-visual {
  width: 280px;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-light);
  background: linear-gradient(180deg, rgba(37,99,235,0.03) 0%, transparent 100%);
  flex-shrink: 0;
}

.team-member-layout.reverse .team-member-visual {
  border-right: none;
  border-left: 1px solid var(--border-light);
  background: linear-gradient(180deg, rgba(79,70,229,0.03) 0%, transparent 100%);
}

.team-avatar-lg { margin-bottom: 20px; }
.team-avatar-inner { width: 120px; height: 120px; }

.team-member-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.team-member-badge.accent { background: linear-gradient(135deg, #4f46e5, #ec4899); }
.team-member-badge.gold-bg { background: var(--gradient-accent); color: #fff; }

.team-member-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.team-member-tags span {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-page);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.team-member-info { flex: 1; padding: 44px 40px; }

.team-member-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.team-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-dark);
  background: var(--accent-lighter);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.team-member-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-secondary);
  padding: 16px 0 20px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.team-member-quote::before {
  content: '"';
  font-size: 32px;
  color: var(--accent);
  font-weight: 800;
  line-height: 0;
  vertical-align: -8px;
  margin-right: 4px;
}

.team-member-desc p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.team-member-skills { margin-top: 24px; }

.team-member-skills h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.skill-grid { display: flex; flex-direction: column; gap: 12px; }

.skill-item { display: flex; align-items: center; gap: 14px; }

.skill-name {
  width: 180px;
  font-size: 13px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.skill-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-surface);
  border-radius: 4px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--gradient-primary);
  transition: width 1.5s ease;
}

.skill-fill.purple { background: linear-gradient(90deg, #4f46e5, #ec4899); }
.skill-fill.gold-fill { background: var(--gradient-accent); }

/* Team workflow */
.team-workflow {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.workflow-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
}

.workflow-step:hover { box-shadow: var(--shadow); }

.workflow-step-num {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.workflow-step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.workflow-step-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.workflow-step-content p strong { color: var(--accent-dark); }

.mission-block { padding: 48px; }
.mission-icon { margin-bottom: 24px; opacity: 0.6; }

/* ============================================
   CREDENTIALS PAGE
   ============================================ */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.credential-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.credential-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.credential-icon-wrap { margin-bottom: 24px; }

.credential-icon-bg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(37, 99, 235, 0.15);
  transition: var(--transition);
}

.credential-card:hover .credential-icon-bg { border-color: var(--border-glow); }

.credential-icon-bg.purple-bg {
  background: #eef2ff;
  border-color: rgba(79, 70, 229, 0.15);
}

.credential-icon-bg.green-bg {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, 0.15);
}

.credential-icon-bg.blue-bg {
  background: var(--primary-lighter);
  border-color: rgba(37, 99, 235, 0.15);
}

.credential-icon-bg.gold-bg-icon {
  background: var(--accent-lighter);
  border-color: rgba(245, 158, 11, 0.2);
}

.credential-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.credential-id {
  font-size: 13px;
  font-family: "SF Mono", "Consolas", monospace;
  color: var(--text-light);
  background: var(--bg-page);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.credential-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.credential-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.credential-tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-page);
  border: 1px solid var(--border);
  color: var(--text-light);
}

.credential-tag.verified {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, 0.2);
  color: #059669;
}

/* Honors grid */
.honors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.honor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.honor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.honor-card:hover::before { opacity: 1; }

.honor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.honor-medal { margin-bottom: 18px; }

.honor-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.honor-card p { font-size: 13px; color: var(--text-secondary); margin-bottom: 12px; }

.honor-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--accent-lighter);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 3px 14px;
  border-radius: var(--radius-full);
}

/* Partners grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.partner-logo-placeholder {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 14px;
  padding: 20px;
  background: var(--bg-page);
  border-radius: var(--radius);
  letter-spacing: 1px;
}

.partner-card h4 { font-size: 15px; font-weight: 600; color: var(--text-heading); margin-bottom: 4px; }
.partner-card p { font-size: 13px; color: var(--text-secondary); }

/* Compliance grid */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.compliance-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}

.compliance-item:hover {
  box-shadow: var(--shadow-sm);
}

.compliance-icon { font-size: 28px; flex-shrink: 0; }

.compliance-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.compliance-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FLOATING CUSTOMER SERVICE WIDGET
   ============================================ */
.float-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.float-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0;
  width: 340px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.float-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.float-panel-header {
  background: var(--gradient-primary);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.float-panel-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.float-panel-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.float-panel-close:hover { background: rgba(255,255,255,0.35); }

.float-panel-body { padding: 24px; }

.float-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.float-contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.float-contact-method:hover {
  background: var(--primary-lighter);
  border-color: rgba(37, 99, 235, 0.15);
}

.float-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.float-contact-icon.wechat { background: linear-gradient(135deg, #07c160, #06ad56); }
.float-contact-icon.phone { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.float-contact-icon.email { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.float-contact-text { display: flex; flex-direction: column; }
.float-contact-label { font-size: 12px; color: var(--text-light); }
.float-contact-value { font-size: 15px; font-weight: 600; color: var(--text-heading); }

.float-qr-section {
  text-align: center;
  padding: 20px 0 0;
  border-top: 1px solid var(--border-light);
}

.float-qr-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.float-qr-code {
  width: 160px;
  height: 160px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 auto 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-qr-note { font-size: 12px; color: var(--text-light); line-height: 1.6; }

.float-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
  transition: var(--transition);
}

.float-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(245,158,11,0.4);
}

.float-trigger.open-trigger {
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}

.float-trigger-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== Platform Entry Link ===== */
.platform-entry { padding: 32px 0; }
.platform-entry-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ======== BLOG PAGE ======== */
.blog-schedule {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.blog-schedule-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.blog-schedule-icon { font-size: 42px; line-height: 1; }

.blog-schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.blog-schedule-item {
  background: var(--primary-lighter);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  transition: var(--transition);
}

.blog-schedule-item:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.blog-schedule-day {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

.blog-schedule-label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== Blog Card ===== */
.blog-card { margin-bottom: 48px; }
.blog-card-header { margin-bottom: 28px; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.blog-date { font-size: 13px; color: var(--text-light); font-weight: 500; }

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.blog-cat-trend { background: var(--primary-lighter); color: var(--primary); border: 1px solid rgba(37, 99, 235, 0.15); }
.blog-cat-tech { background: #eef2ff; color: #4f46e5; border: 1px solid rgba(79, 70, 229, 0.15); }
.blog-cat-case { background: #ecfdf5; color: #059669; border: 1px solid rgba(16, 185, 129, 0.15); }
.blog-cat-guide { background: #fdf2f8; color: #db2777; border: 1px solid rgba(236, 72, 153, 0.15); }
.blog-cat-compare { background: #ecfeff; color: #0891b2; border: 1px solid rgba(14, 165, 233, 0.15); }
.blog-cat-hot { background: var(--accent-lighter); color: var(--accent-dark); border: 1px solid rgba(245, 158, 11, 0.2); }

.blog-card-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.blog-card-body { color: var(--text-secondary); font-size: 15px; line-height: 1.9; }

.blog-card-body .blog-summary {
  background: var(--primary-lighter);
  border-left: 3px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 28px;
  line-height: 1.8;
  color: var(--text-heading);
}

.blog-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 32px 0 14px;
  line-height: 1.4;
}

.blog-card-body h3:first-of-type { margin-top: 0; }

.blog-card-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 24px 0 10px;
  line-height: 1.4;
}

.blog-card-body p { margin-bottom: 14px; text-align: justify; }
.blog-card-body strong { color: var(--text-heading); font-weight: 700; }

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.blog-tags { font-size: 12px; color: var(--text-light); }

.blog-cta-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  padding: 8px 20px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.blog-cta-link:hover {
  background: var(--accent-lighter);
  border-color: var(--accent);
}

/* ===== Blog Empty State ===== */
.blog-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
}

.blog-empty-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.blog-empty-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.blog-empty-desc {
  font-size: 14px;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ===== Blog Pin Badge ===== */
.blog-pin-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* ===== Blog Index Card ===== */
.blog-card-index {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  margin-bottom: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.blog-card-index:has(.blog-pin-badge) {
  border-left: 3px solid var(--accent);
}

.blog-card-index:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-card-index .blog-card-title a {
  color: var(--text-heading);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-index .blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-index .blog-card-title {
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.blog-card-index .blog-summary {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ===== Full Article (Individual Blog Post) ===== */
.blog-article-full {
  max-width: 820px;
  margin: 0 auto;
}

.blog-article-header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.blog-article-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.3;
  margin-top: 16px;
  margin-bottom: 0;
}

.blog-article-body {
  font-size: 16px;
  line-height: 2;
  color: var(--text-secondary);
}

.blog-article-body h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 40px 0 16px;
  padding-top: 0;
}

.blog-article-body h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 32px 0 12px;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
}

.blog-article-body h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 24px 0 10px;
}

.blog-article-body p {
  margin-bottom: 16px;
  text-align: justify;
}

.blog-article-body strong {
  color: var(--text-heading);
  font-weight: 700;
}

.blog-article-body .blog-summary {
  background: var(--bg-page);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
  font-size: 15px;
}

/* ===== Article Footer ===== */
.blog-article-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.blog-tags-full {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.blog-tag-item {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.blog-tag-item:hover {
  background: var(--primary-lighter);
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.2);
}

/* ===== Prev/Next Navigation ===== */
.blog-nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-prev, .blog-next {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-prev:hover, .blog-next:hover {
  background: var(--primary-lighter);
  border-color: var(--primary);
}

.blog-back {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.blog-back:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* ===== Blog Compare Table ===== */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0 28px;
  font-size: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare-table thead th {
  background: var(--bg-page);
  color: var(--text-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table tbody td {
  padding: 12px 18px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  line-height: 1.6;
  vertical-align: top;
}

.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--bg-page); }

/* ===== Page Hero (for blog, team, etc.) ===== */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  background: var(--gradient-hero);
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-heading);
  margin: 20px 0 16px;
  letter-spacing: -1px;
}

.page-hero .hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== Responsive ===== */

/* ===== Blog TOC 文章目录 ===== */
.blog-toc {
  background: #f0f7ff;
  border: 1px solid #c5ddf7;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 0 0 32px 0;
}
.blog-toc-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.blog-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}
.blog-toc-list li {
  counter-increment: toc-counter;
  margin-bottom: 8px;
  padding-left: 0;
}
.blog-toc-list li:last-child { margin-bottom: 0; }
.blog-toc-list li::before {
  content: counter(toc-counter) ".";
  color: var(--primary);
  font-weight: 600;
  margin-right: 6px;
}
.blog-toc-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
  border-bottom: none;
}
.blog-toc-list a:hover {
  color: var(--primary);
}
@media (max-width: 768px) {
  .blog-toc { padding: 18px 16px; margin: 0 0 24px 0; }
  .blog-toc-list a { font-size: 14px; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-schedule-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 38px; }
  .hero-subtitle { font-size: 16px; }
  .section-header h2 { font-size: 30px; }
  .page-banner h1 { font-size: 32px; }
  .page-hero h1 { font-size: 36px; }
  .hero-stats { gap: 32px; }
  .hero-stat:not(:last-child)::after { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
  }

  .nav-links.open { display: flex; }
  .nav-dropdown .dropdown-menu { position: static; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding: 0 0 8px 20px; }
  .nav-dropdown .dropdown-arrow { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .grid-2, .grid-3, .grid-4, .product-features { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }

  .hero { padding: 120px 0 72px; }
  .hero h1 { font-size: 30px; }
  .hero-stats { gap: 28px; }
  .hero-stat .stat-num { font-size: 30px; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 26px; }
  .page-banner h1 { font-size: 28px; }
  .page-banner p { font-size: 15px; }
  .page-hero h1 { font-size: 28px; }

  .card, .service-detail, .case-card,
  .industry-card, .testimonial-card, .product-card { padding: 24px; }
  .product-card-icon { font-size: 34px; }
  .product-cta { margin-top: 36px; }
  .module-section { margin-bottom: 56px; padding-bottom: 56px; }
  .module-section .section-header h2 { font-size: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-section h2 { font-size: 26px; }
  .case-info-grid { grid-template-columns: 1fr; }
  .case-results { gap: 24px; }
  .matrix-layer { flex-direction: column; }
  .matrix-layer .layer-num { width: 100%; height: 44px; }

  .platform-entry-inner { flex-direction: column; text-align: center; gap: 24px; }
  .platform-entry-actions { flex-direction: column; width: 100%; }

  .steps-horizontal { grid-template-columns: 1fr; }
  .pricing-compare { font-size: 12px; }
  .credentials-grid, .honors-grid, .partners-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }

  .team-member-layout, .team-member-layout.reverse { flex-direction: column; }
  .team-member-visual { width: 100%; border-right: none; border-bottom: 1px solid var(--border-light); padding: 36px 24px; }
  .team-member-layout.reverse .team-member-visual { border-left: none; }
  .team-member-info { padding: 28px 24px; }
  .team-member-info h3 { font-size: 22px; }
  .skill-item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .skill-name { width: auto; }

  .float-widget { bottom: 20px; right: 20px; }
  .float-panel { width: calc(100vw - 40px); max-width: 340px; }

  .blog-schedule-grid { grid-template-columns: 1fr 1fr; }
  .blog-schedule-header { flex-direction: column; text-align: center; }
}

/* ============================================
   RESPONSIVE ENHANCEMENTS — Mobile & Tablet
   ============================================ */

@media (max-width: 1024px) {
  .nav-inner { padding: 0 24px; }
  .container { padding: 0 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .blog-schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-list { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .pain-points { grid-template-columns: repeat(2, 1fr); }
  .process-steps { gap: 16px; }
  .process-step { min-width: 140px; padding: 24px 18px; }
}

@media (max-width: 968px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 80px; }
  .hero h1 { font-size: 38px; }
  .hero-subtitle { font-size: 16px; }
  .hero-stats { gap: 32px; margin-top: 48px; }
  .hero-stat:not(:last-child)::after { display: none; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 44px; }
  .section-header h2 { font-size: 30px; }
  .page-banner { padding: 110px 0 56px; }
  .page-banner h1 { font-size: 32px; }
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 36px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-6px); }
  .nav-links { gap: 28px; }
  .cta-section h2 { font-size: 30px; }
  .cta-section { padding: 60px 0; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; height: 64px; }

  .nav-logo { font-size: 18px; gap: 8px; }
  .nav-logo .logo-icon { width: 36px; height: 36px; font-size: 16px; }
  .nav-logo-img { height: 36px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border-light); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
  }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--primary); background: var(--primary-lighter); margin: 0 -24px; padding: 14px 24px; border-radius: 0; }
  .nav-dropdown .dropdown-menu { position: static; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; padding: 0 0 8px 20px; }
  .nav-dropdown .dropdown-arrow { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .grid-2, .grid-3, .grid-4, .product-features { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 16px; }

  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 28px; letter-spacing: -0.5px; line-height: 1.25; }
  .hero-badge { font-size: 12px; padding: 7px 16px; margin-bottom: 20px; }
  .hero-subtitle { font-size: 15px; line-height: 1.7; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { gap: 20px; margin-top: 40px; }
  .hero-stat { flex: 1; min-width: 120px; }
  .hero-stat .stat-num { font-size: 28px; }
  .hero-stat .stat-num .stat-suffix { font-size: 18px; }

  .section { padding: 52px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 24px; }
  .section-header p { font-size: 15px; }

  .page-banner { padding: 100px 0 48px; }
  .page-banner h1 { font-size: 26px; }
  .page-banner p { font-size: 14px; }
  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: 28px; }

  .card, .service-detail, .case-card,
  .industry-card, .testimonial-card, .product-card,
  .kb-article, .advantage-item { padding: 24px 20px; }

  .card h3, .product-card h3 { font-size: 18px; }
  .card p, .product-card p { font-size: 14px; }
  .card-icon { width: 48px; height: 48px; font-size: 20px; }
  .product-card-icon { font-size: 32px; margin-bottom: 14px; }
  .product-cta { margin-top: 32px; flex-direction: column; align-items: center; }
  .product-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .module-section { margin-bottom: 48px; padding-bottom: 48px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer { padding: 48px 0 0; }
  .footer-brand p { font-size: 13px; }
  .footer-col h4 { font-size: 14px; }
  .footer-bottom { padding: 20px 0; font-size: 12px; }

  .cta-section { padding: 48px 0; }
  .cta-section h2 { font-size: 22px; }
  .cta-section p { font-size: 15px; }
  .cta-section .btn { width: 100%; max-width: 320px; justify-content: center; }

  .case-info-grid { grid-template-columns: 1fr; }
  .case-results { gap: 20px; flex-direction: column; }
  .case-result-item { text-align: left; display: flex; align-items: center; gap: 12px; }
  .case-result-item .result-label { margin-top: 0; }

  .matrix-layer { flex-direction: column; gap: 12px; }
  .matrix-layer .layer-num { width: 100%; height: 44px; font-size: 20px; }

  .steps-horizontal { grid-template-columns: 1fr; }
  .pricing-compare { font-size: 12px; }
  .credentials-grid, .honors-grid, .partners-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .advantage-list { grid-template-columns: 1fr; }
  .pain-points { grid-template-columns: 1fr; }

  .team-member-layout, .team-member-layout.reverse { flex-direction: column; }
  .team-member-visual { width: 100%; border-right: none; border-bottom: 1px solid var(--border-light); padding: 32px 20px; }
  .team-member-layout.reverse .team-member-visual { border-left: none; }
  .team-member-info { padding: 24px 20px; }
  .team-member-info h3 { font-size: 20px; }
  .skill-item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .skill-name { width: auto; }

  .float-widget { bottom: 16px; right: 16px; }
  .float-panel { width: calc(100vw - 32px); max-width: 340px; }
  .float-trigger { width: 50px; height: 50px; font-size: 24px; }

  .blog-schedule-grid { grid-template-columns: 1fr 1fr; }
  .blog-schedule-header { flex-direction: column; text-align: center; }
  .blog-schedule { padding: 24px; }
  .blog-card-index { padding: 24px 20px; }
  .blog-card-index .blog-card-title { font-size: 18px; }
  .blog-article-title { font-size: 24px; }
  .blog-article-body { font-size: 15px; }
  .blog-article-body h2 { font-size: 22px; }
  .blog-article-body h3 { font-size: 18px; }
  .blog-article-footer { flex-direction: column; align-items: flex-start; }
  .blog-nav-links { flex-direction: column; align-items: stretch; }
  .blog-prev, .blog-next, .blog-back { text-align: center; max-width: 100%; }

  .faq-question { padding: 16px 20px; font-size: 14px; }
  .faq-item.active .faq-answer { padding: 0 20px 16px; }

  .comparison-table th, .comparison-table td { padding: 14px 16px; font-size: 13px; }
  .comparison-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .service-detail { padding: 28px 20px; margin-bottom: 24px; }
  .service-detail h3 { font-size: 20px; }

  .process-step { padding: 24px 18px; }
  .process-step .step-num { width: 40px; height: 40px; font-size: 16px; }
  .process-step h4 { font-size: 15px; }

  .info-block h2 { font-size: 22px; }
  .info-block h3 { font-size: 18px; }
  .info-block p { font-size: 14px; }

  .platform-entry-inner { flex-direction: column; text-align: center; gap: 20px; }

  .breadcrumb { padding: 12px 0; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero h1 { font-size: 24px; }
  .hero-badge span:first-child { font-size: 10px; padding: 2px 8px; }
  .section-header h2 { font-size: 22px; }
  .section-header .section-eyebrow { font-size: 11px; padding: 5px 14px; }
  .page-banner h1 { font-size: 22px; }
  .page-hero h1 { font-size: 24px; }
  .btn { padding: 12px 24px; font-size: 14px; }
  .btn-xl { padding: 14px 32px; font-size: 15px; }
  .hero-stat .stat-num { font-size: 24px; }
  .stat-card-num { font-size: 32px; }
  .credential-card { padding: 28px 20px; }
  .honor-card { padding: 28px 18px; }
  .product-card { padding: 28px 22px; }
  .product-card h3 { font-size: 17px; }
  .product-card-icon { font-size: 30px; margin-bottom: 12px; }
  .module-section { margin-bottom: 40px; padding-bottom: 40px; }
  .module-section .section-header h2 { font-size: 24px; }
  .product-cta { margin-top: 28px; }
  .partner-card { padding: 28px 20px; }
  .ruanzan-cert-preview img { max-width: 100%; border-radius: 8px; }
  .compliance-item { padding: 20px; flex-direction: column; gap: 12px; }
  .footer-grid { gap: 24px; }
  .case-card { padding: 24px 18px; }
  .case-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .blog-card-title { font-size: 20px; }
  .blog-card-index .blog-card-title { font-size: 16px; }
  .blog-article-title { font-size: 20px; }
  .blog-pin-badge { font-size: 11px; padding: 2px 10px; }
  .blog-empty-state { padding: 40px 16px; }
  .blog-empty-icon { font-size: 40px; }
  .blog-article-body { font-size: 14px; }
  .blog-article-body h2 { font-size: 20px; }
  .blog-article-body h3 { font-size: 17px; }
  .blog-tags-full { gap: 4px; }
  .blog-tag-item { font-size: 11px; padding: 3px 8px; }
  .workflow-step { padding: 20px; gap: 16px; }
  .workflow-step-num { width: 40px; height: 40px; font-size: 16px; }
  .float-panel { width: calc(100vw - 32px); }
}

/* ===== Logo Styles ===== */
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* ===== Soft著作权 Section ===== */
.softworks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.softwork-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.softwork-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--border-glow);
}

.softwork-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-lighter);
  border: 1.5px solid rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.softwork-icon.gold { background: var(--accent-lighter); border-color: rgba(245, 158, 11, 0.2); }
.softwork-icon.purple { background: #eef2ff; border-color: rgba(79, 70, 229, 0.15); }
.softwork-icon.green { background: #ecfdf5; border-color: rgba(16, 185, 129, 0.15); }
.softwork-icon.red { background: #fef2f2; border-color: rgba(239, 68, 68, 0.15); }

.softwork-content { flex: 1; }
.softwork-content h4 { font-size: 17px; font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
.softwork-content .softwork-id { font-size: 12px; font-family: "SF Mono", "Consolas", monospace; color: var(--text-light); background: var(--bg-page); padding: 4px 10px; border-radius: var(--radius-sm); display: inline-block; margin-bottom: 10px; }
.softwork-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.softwork-content .softwork-date { font-size: 12px; color: var(--text-light); margin-top: 10px; }

/* Single featured softwork card */
.softwork-card-featured {
  padding: 40px;
  border: 1.5px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.softwork-card-featured .softwork-icon {
  width: 72px;
  height: 72px;
  font-size: 30px;
}
.softwork-card-featured .softwork-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.softwork-card-featured .softwork-content p {
  font-size: 15px;
  line-height: 1.85;
}

@media (max-width: 768px) {
  .softworks-grid { grid-template-columns: 1fr; }
  .softwork-card { padding: 24px 20px; }
}

/* ===== Contact Info Cards ===== */
.contact-info-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-glow);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-icon.phone { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.contact-info-icon.wechat { background: linear-gradient(135deg, #07c160, #06ad56); }
.contact-info-icon.address { background: linear-gradient(135deg, #f59e0b, #d97706); }
.contact-info-icon.email { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.contact-info-text { flex: 1; }
.contact-info-text h4 { font-size: 14px; font-weight: 600; color: var(--text-light); margin-bottom: 4px; }
.contact-info-text p { font-size: 16px; font-weight: 700; color: var(--text-heading); }
.contact-info-text a { font-size: 16px; font-weight: 700; color: var(--primary); }
.contact-info-text a:hover { color: var(--primary-dark); }

@media (max-width: 768px) {
  .contact-info-section { grid-template-columns: 1fr; }
  .contact-info-card { padding: 20px; }
}

/* ===== Align & Spacing Fixes ===== */
.section:has(> .container > .section-header:first-child) {
  padding-top: 88px;
}

@media (max-width: 768px) {
  .section:has(> .container > .section-header:first-child) {
    padding-top: 52px;
  }
}


/* ===== 博客列表两列网格 ===== */
.blog-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .blog-grid-2col {
    grid-template-columns: 1fr;
  }
}

/* ===== 博客卡片视觉头部 ===== */
.blog-card-visual {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 !important;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.blog-card-visual:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-visual-head {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-visual-head::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.08);
}

.blog-card-visual-emoji {
  font-size: 40px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.blog-card-visual-body {
  padding: 24px 28px 28px;
}

.blog-card-visual .blog-card-header {
  margin-bottom: 16px;
}

.blog-card-visual .blog-card-title {
  font-size: 18px !important;
  line-height: 1.5 !important;
  margin-bottom: 10px !important;
}

.blog-card-visual .blog-card-title a {
  color: var(--text-heading);
  text-decoration: none;
}

.blog-card-visual .blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-visual .blog-summary {
  font-size: 14px !important;
  color: var(--text-secondary) !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
  background: none !important;
  border-left: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.blog-card-visual .blog-card-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

/* ===== 博客文章封面头部 ===== */
.blog-article-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
}

.blog-article-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.blog-article-hero-emoji {
  font-size: 52px;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.blog-article-hero-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  padding: 5px 20px;
  border-radius: var(--radius-full);
}
/* ===== Blog List - Compact Cards ===== */
.blog-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .blog-grid-compact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid-compact { grid-template-columns: 1fr; }
}
.blog-compact-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-compact-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.blog-compact-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #6b7280;
}
.blog-compact-date { font-weight: 500; }
.blog-compact-cat {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-compact-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.blog-compact-title a {
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-compact-title a:hover { color: #2563eb; }
.blog-compact-excerpt {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}
.blog-compact-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #f3f4f6;
  padding-top: 10px;
}
.blog-compact-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.blog-compact-tag {
  font-size: 12px;
  color: #9ca3af;
  background: #f9fafb;
  padding: 2px 8px;
  border-radius: 4px;
}
.blog-compact-readmore {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.blog-compact-readmore:hover { opacity: 0.8; }
