/* ========================================
   AI Token Page Styles - 极简商务风
   ======================================== */
.token-page {
  background: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-sans);
}
/* ===== Container ===== */
.token-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* ===== 通用工具类 ===== */
.token-text-red {
  color: var(--primary);
}
.token-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.token-section-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.token-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.token-section-subtitle {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
/* ===== 按钮 ===== */
.token-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.token-btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}
.token-btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.token-btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  color: white;
}
.token-btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.token-btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.token-btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
}
.token-btn-white:hover {
  background: var(--bg-gray);
  border-color: var(--bg-gray);
  transform: translateY(-2px);
  color: var(--primary-dark);
}
.token-btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.token-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
  color: white;
}
.token-btn-package {
  width: 100%;
  padding: 14px 24px;
}
/* ===== 顶部公告栏 ===== */
.token-top-bar {
  background: var(--primary);
  color: white;
  padding: 10px 0;
  font-size: 13px;
}
.token-top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.token-top-bar-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.token-top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 12px;
}
.token-top-bar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-weight: 500;
}
.token-top-bar-contacts a:hover {
  opacity: 0.8;
}
.token-top-bar-sep {
  opacity: 0.5;
}
/* ===== 导航栏 ===== */
.token-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.token-nav.scrolled {
  box-shadow: var(--shadow-md);
}
.token-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 72px;
}
.token-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.token-nav-logo-img {
  height: 36px;
  width: auto;
}
.token-nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.token-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.token-nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition);
  text-decoration: none;
}
.token-nav-link:hover {
  color: var(--primary);
}
.token-nav-link.active {
  color: var(--primary);
  font-weight: 600;
}
.token-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.token-nav-actions {
  flex-shrink: 0;
}
.token-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.token-nav-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  color: white;
}
.token-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.token-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
/* ===== 移动端导航 ===== */
.token-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 200;
  padding: 24px;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.token-mobile-nav.active {
  right: 0;
}
.token-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.token-mobile-nav-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}
.token-mobile-nav-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-medium);
  border-radius: var(--radius);
}
.token-mobile-nav-close:hover {
  background: var(--bg-gray);
  color: var(--text-dark);
}
.token-mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.token-mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius);
  text-decoration: none;
}
.token-mobile-nav-link:hover {
  background: var(--bg-gray);
  color: var(--primary);
}
.token-mobile-nav-link.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}
.token-mobile-nav-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.token-mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.token-mobile-contact-btn.secondary {
  background: var(--bg-gray);
  color: var(--text-dark);
}
.token-mobile-contact-btn:hover {
  transform: translateY(-1px);
  color: inherit;
}
.token-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.token-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* ===== Hero 区域 ===== */
.token-hero {
  padding: 80px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}
.token-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.token-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.token-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
}
.token-hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.token-hero-title-accent {
  color: var(--primary);
  display: block;
}
.token-hero-subtitle {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
}
.token-hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.token-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.token-hero-stat {
  text-align: left;
}
.token-hero-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.token-hero-stat-value span {
  color: var(--primary);
  font-size: 0.6em;
  font-weight: 700;
}
.token-hero-stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
/* Hero Visual */
.token-hero-visual {
  position: relative;
}
.token-hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.token-hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bg-gray);
  border-bottom: 1px solid var(--border);
}
.token-hero-card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }
.token-hero-card-title {
  margin-left: 8px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
.token-hero-card-body {
  padding: 20px;
}
.token-hero-model-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  margin-bottom: 10px;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.token-hero-model-item:last-child {
  margin-bottom: 0;
}
.token-hero-model-item:hover {
  border-color: var(--primary);
  background: var(--bg-white);
}
.token-hero-model-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}
.icon-openai { background: linear-gradient(135deg, #10a37f 0%, #0d8b6d 100%); }
.icon-anthropic { background: linear-gradient(135deg, #cc785c 0%, #a85d45 100%); }
.icon-google { background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%); }
.icon-midjourney { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); }
.icon-azure { background: linear-gradient(135deg, #0078d4 0%, #00bcf2 100%); }
.icon-aws { background: linear-gradient(135deg, #ff9900 0%, #232f3e 100%); }
.icon-stability { background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%); }
.icon-cohere { background: linear-gradient(135deg, #394867 0%, #212a3e 100%); }
.token-hero-model-info {
  flex: 1;
  min-width: 0;
}
.token-hero-model-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.token-hero-model-desc {
  font-size: 12px;
  color: var(--text-light);
}
.token-hero-model-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #10B981;
  font-weight: 600;
  flex-shrink: 0;
}
.status-indicator {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
}
.token-hero-card-footer {
  padding: 16px 20px;
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
}
.token-hero-usage-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--text-medium);
}
.token-hero-usage-value {
  color: var(--primary);
  font-weight: 700;
}
.token-hero-usage-bar {
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.token-hero-usage-fill {
  height: 100%;
  width: 68%;
  background: var(--primary);
  border-radius: 100px;
}
/* ===== 对比区 ===== */
.token-compare {
  padding: 80px 0;
  background: white;
}
.token-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: stretch;
}
.token-compare-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: white;
  transition: var(--transition);
}
.token-compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.token-compare-bad {
  border-color: #FECACA;
  background: linear-gradient(180deg, #FEF2F2 0%, white 100%);
}
.token-compare-good {
  border-color: #BBF7D0;
  background: linear-gradient(180deg, #F0FDF4 0%, white 100%);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}
.token-compare-card-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.token-compare-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}
.icon-bad {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}
.icon-good {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}
.token-compare-card-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.token-compare-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.tag-bad {
  background: #FEE2E2;
  color: #DC2626;
}
.tag-good {
  background: #D1FAE5;
  color: #059669;
}
.token-compare-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.token-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.token-compare-list i {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.token-compare-bad .token-compare-list i {
  color: #EF4444;
}
.token-compare-good .token-compare-list i {
  color: #10B981;
}
.token-compare-list strong {
  display: block;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 4px;
}
.token-compare-list span {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.5;
}
.token-compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.token-compare-vs span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}
/* ===== 支持的 AI 厂商 ===== */
.token-models {
  padding: 80px 0;
  background: var(--bg-gray);
}
.token-models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.token-model-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.token-model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.token-model-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-bottom: 18px;
}
.token-model-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.token-model-card p {
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.6;
}
.token-model-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-top: auto;
}
.token-model-tags::-webkit-scrollbar {
  display: none;
}
.token-model-tags span {
  padding: 4px 10px;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 11px;
  color: var(--text-medium);
  font-weight: 500;
  flex-shrink: 0;
}
/* ===== 应用场景 ===== */
.token-scenarios {
  padding: 80px 0;
  background: white;
}
.token-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.token-scenario-card {
  position: relative;
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 0 28px 28px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}
.token-scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  background: white;
}
.token-scenario-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-top: 24px;
}
.token-scenario-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  transition: var(--transition);
}
.token-scenario-card:hover .token-scenario-num {
  color: var(--primary);
}
.token-scenario-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  flex-shrink: 0;
  transition: var(--transition);
}
.token-scenario-card:hover .token-scenario-icon {
  transform: scale(1.05);
}
.token-scenario-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.token-scenario-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 16px;
}
.token-scenario-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.token-scenario-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark);
}
.token-scenario-card ul li i {
  color: var(--primary);
  font-size: 12px;
}
/* ===== 价格方案 ===== */
.token-pricing {
  padding: 80px 0;
  background: var(--bg-gray);
}
.token-pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.token-pricing-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 2px solid var(--border);
  background: white;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
}
.token-pricing-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.token-pricing-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.token-pricing-content {
  position: relative;
}
.token-pricing-panel {
  display: none;
}
.token-pricing-panel.active {
  display: block;
  animation: tokenFadeIn 0.3s ease-out;
}
@keyframes tokenFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.token-pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.token-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.token-pricing-table thead {
  background: var(--primary);
}
.token-pricing-table th {
  padding: 16px 20px;
  text-align: left;
  color: white;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.token-pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dark);
}
.token-pricing-table tbody tr:hover {
  background: var(--bg-gray);
}
.token-pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.token-vendor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
}
.vendor-openai { background: #F0FDF4; color: #059669; }
.vendor-anthropic { background: #FFF7ED; color: #C2410C; }
.vendor-google { background: #EFF6FF; color: #2563EB; }
.token-pricing-note {
  text-align: center;
  padding: 16px 24px;
  background: var(--primary-light);
  border: 1px solid #FECACA;
  border-radius: var(--radius);
}
.token-pricing-note p {
  font-size: 13px;
  color: var(--text-medium);
}
.token-pricing-note i {
  color: var(--primary);
  margin-right: 6px;
}
.token-pricing-note strong {
  color: var(--text-dark);
}
/* 套餐卡片 */
.token-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.token-package-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.token-package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.token-package-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
}
.token-package-badge {
  position: absolute;
  top: 16px;
  right: 20px;
  padding: 4px 12px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius);
}
.token-package-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.token-package-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.token-package-header p {
  font-size: 14px;
  color: var(--text-light);
}
.token-package-price {
  text-align: center;
  margin-bottom: 28px;
}
.token-package-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-medium);
  vertical-align: top;
  margin-right: 2px;
}
.token-package-value {
  font-size: 56px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
.token-package-period {
  font-size: 14px;
  color: var(--text-light);
  margin-left: 4px;
}
.token-package-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.token-package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.token-package-features li:last-child {
  border-bottom: none;
}
.token-package-features li i {
  color: #10B981;
  font-size: 16px;
  flex-shrink: 0;
}
/* 支付方式 */
.token-payment-methods {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin-top: 32px;
}
.token-payment-methods h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.token-payment-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.token-payment-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.token-payment-item i {
  font-size: 20px;
  color: #10B981;
}
/* ===== 秀米云推荐专区 ===== */
.token-xiumiyun {
  padding: 60px 0;
  background: #FEF2F2;
}
.token-xiumiyun-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.token-xiumiyun-text {
  flex: 1;
}
.token-xiumiyun-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.token-xiumiyun-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.token-xiumiyun-text p {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.7;
}
.token-xiumiyun-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.token-xiumiyun-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}
.token-xiumiyun-features i {
  color: var(--primary);
}
.token-xiumiyun-action {
  flex-shrink: 0;
}
/* ===== 核心优势 ===== */
.token-advantages {
  padding: 80px 0;
  background: white;
}
.token-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.token-advantage-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-gray);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.token-advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: white;
  border-color: var(--primary);
}
.token-advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.token-advantage-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.token-advantage-card p {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.7;
}
/* ===== 购买流程 ===== */
.token-process {
  padding: 80px 0;
  background: var(--bg-gray);
}
.token-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.token-process-step {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.token-process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.token-process-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 36px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
}
.token-process-step:hover .token-process-number {
  color: var(--primary-light);
}
.token-process-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}
.token-process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.token-process-step p {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.7;
}
/* ===== FAQ 常见问题 ===== */
.token-faq {
  padding: 80px 0;
  background: white;
}
.token-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.token-faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.token-faq-item:hover {
  border-color: #D1D5DB;
}
.token-faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.token-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
}
.token-faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}
.token-faq-item.active .token-faq-question span {
  color: var(--primary);
}
.token-faq-question i {
  font-size: 14px;
  color: var(--text-light);
  transition: var(--transition);
  flex-shrink: 0;
}
.token-faq-item.active .token-faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}
.token-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.token-faq-item.active .token-faq-answer {
  max-height: 600px;
}
.token-faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.8;
}
.token-faq-answer ul {
  padding: 0 24px 20px 48px;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 2;
  list-style: disc;
}
.token-faq-answer strong {
  color: var(--text-dark);
}
/* ===== CTA 横幅 ===== */
.token-cta-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}
.token-cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.token-cta-banner-text {
  flex: 1;
}
.token-cta-banner-text h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}
.token-cta-banner-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.token-cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
/* ===== 页脚 ===== */
.token-footer {
  background: #111827;
  color: #9CA3AF;
  padding: 60px 0 30px;
}
.token-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.token-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.token-footer-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
.token-footer-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.token-footer-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #9CA3AF;
}
.token-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.token-footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #D1D5DB;
}
.token-footer-contacts a:hover {
  color: white;
}
.token-footer-contacts i {
  color: #0088cc;
}
.token-footer-links h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.token-footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.token-footer-links ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.token-footer-links ul li i {
  font-size: 14px;
  width: 18px;
  text-align: center;
}
.token-footer-links a {
  font-size: 14px;
  color: #9CA3AF;
}
.token-footer-links a:hover {
  color: white;
}
.token-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid #374151;
  gap: 20px;
}
.token-footer-bottom p {
  font-size: 13px;
  color: #6B7280;
}
.token-footer-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.token-footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #9CA3AF;
}
.token-footer-badges i {
  color: var(--primary);
}
/* ===== 悬浮按钮 ===== */
.token-float-btns {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}
.token-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.float-logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: contain;
}
.token-float-telegram {
  background: #0088cc;
  color: white;
}
.token-float-telegram:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.token-float-top {
  background: white;
  color: var(--primary);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.token-float-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.token-float-top:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
}
/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .token-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .token-hero-text {
    text-align: center;
  }
  .token-hero-badges {
    justify-content: center;
  }
  .token-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .token-hero-actions {
    justify-content: center;
  }
  .token-hero-stats {
    text-align: center;
  }
  .token-hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .token-models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .token-scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .token-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .token-packages-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 32px;
  }
  .token-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .token-compare-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .token-compare-vs {
    order: -1;
  }
  .token-xiumiyun-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .token-xiumiyun-features {
    justify-content: center;
  }
  .token-cta-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .token-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .token-footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .token-top-bar-content {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 12px;
  }
  .token-nav-links,
  .token-nav-actions {
    display: none;
  }
  .token-nav-toggle {
    display: flex;
  }
  .token-nav-inner {
    height: 64px;
  }
  .token-hero {
    padding: 60px 0;
  }
  .token-hero-title {
    font-size: 36px;
  }
  .token-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .token-hero-actions .token-btn {
    width: 100%;
    max-width: 280px;
  }
  .token-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .token-section-title {
    font-size: 28px;
  }
  .token-models-grid {
    grid-template-columns: 1fr;
  }
  .token-scenarios-grid {
    grid-template-columns: 1fr;
  }
  .token-advantages-grid {
    grid-template-columns: 1fr;
  }
  .token-process-steps {
    grid-template-columns: 1fr;
  }
  .token-pricing-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .token-pricing-tab {
    justify-content: center;
  }
  .token-cta-banner-text h2 {
    font-size: 24px;
  }
  .token-cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .token-cta-banner-actions .token-btn {
    width: 100%;
  }
  .token-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .token-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .token-footer-badges {
    justify-content: center;
  }
  .token-float-btns {
    right: 16px;
    bottom: 16px;
  }
  .token-float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .token-compare,
  .token-models,
  .token-scenarios,
  .token-pricing,
  .token-advantages,
  .token-process,
  .token-faq {
    padding: 60px 0;
  }
  .token-section-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .token-hero-title {
    font-size: 30px;
  }
  .token-hero-subtitle {
    font-size: 15px;
  }
  .token-hero-stat-value {
    font-size: 28px;
  }
  .token-section-title {
    font-size: 24px;
  }
  .token-package-value {
    font-size: 48px;
  }
  .token-package-card {
    padding: 28px 20px;
  }
  .token-xiumiyun-text h2 {
    font-size: 22px;
  }
  .token-cta-banner-text h2 {
    font-size: 20px;
  }
  .token-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
