:root {
  --color-primary: #e46d1d;
  --color-secondary: #4c26c0;
  --color-accent: #59a1c1;
  --color-bg-dark: #040404;
  --color-bg-light: #f9f7f8;
  --color-text-dark: #2c231f;
  --color-text-light: #ffffff;
  --color-purple-light: #c4b5fd;
  --color-orange-light: #fed7aa;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-700: #374151;
  --color-gray-600: #4b5563;
  --color-gray-200: #e5e7eb;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

/* Tailwind-like utility classes for documentation pages */
.hx-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.hx-flex {
  display: flex;
}

.hx-w-full {
  width: 100%;
}

.hx-break-words {
  word-wrap: break-word;
}

.hx-min-h-\[calc\(100vh-var\(--navbar-height\)\)\] {
  min-height: calc(100vh - var(--navbar-height));
}

.hx-min-w-0 {
  min-width: 0;
}

.hx-justify-center {
  justify-content: center;
}

.hx-pb-8 {
  padding-bottom: 2rem;
}

.hx-pr-\[calc\(env\(safe-area-inset-right\)-1\.5rem\)\] {
  padding-right: calc(env(safe-area-inset-right) - 1.5rem);
}

.hx-max-w-6xl {
  max-width: 72rem;
}

.hx-px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hx-pt-4 {
  padding-top: 1rem;
}

.hx-mt-6 {
  margin-top: 1.5rem;
}

.hx-mt-4 {
  margin-top: 1rem;
}

.hx-text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.hx-text-gray-500 {
  color: #6b7280;
}

.hx-text-gray-900 {
  color: #111827;
}

.hx-font-semibold {
  font-weight: 600;
}

.hx-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hx-max-w-\[200px\] {
  max-width: 200px;
}

.hx-flex-col {
  flex-direction: column;
}

.hx-gap-2 {
  gap: 0.5rem;
}

.hx-rounded-lg {
  border-radius: 0.5rem;
}

.hx-items-center {
  align-items: center;
}

.hx-transition-colors {
  transition-property: color, background-color;
  transition-duration: 0.2s;
}

.hx-px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.hx-py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.hx-text-primary {
  color: var(--color-primary);
}

.hx-underline {
  text-decoration: underline;
}

.hx-mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.hx-sticky {
  position: sticky;
  top: 0;
}

.hx-top-20 {
  top: 5rem;
}

.hx-h-\[calc\(100vh-var\(--navbar-height\)-env\(safe-area-inset-bottom\)\)\] {
  height: calc(100vh - var(--navbar-height) - env(safe-area-inset-bottom));
}

.hx-w-64 {
  width: 16rem;
}

.hx-overflow-y-auto {
  overflow-y: auto;
}

.hx-py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hx-align-start {
  align-items: flex-start;
}

.hx-hidden {
  display: none;
}

.hx-block {
  display: block;
}

@media (min-width: 768px) {
  .md\:hx-px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 768px) {
  .md\:hx-block {
    display: block;
  }
}

@media (min-width: 1024px) {
  .lg\:hx-block {
    display: block;
  }
}

/* Additional utility classes for documentation */
.hx-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.hx-py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.hover\:hx-text-gray-800:hover {
  color: #1f2937;
}

.hx-hidden {
  display: none;
}

.dark\:hx-text-gray-100 {
  color: #f3f4f6;
}

.dark\:hx-text-gray-100 {
  color: #f3f4f6;
}

/* Document list item styles */
.content h2 a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.content h2 a:hover {
  text-decoration: underline;
}

.content p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.content p img{
  border-radius: 0.5rem;
  border: 1px solid #babbbe;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
  width: 700px;
}

.content ul  {
  padding-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* 分页样式 */
.hx-list-none {
  list-style: none;
}

.hx-cursor-not-allowed {
  cursor: not-allowed;
}

.hx-no-underline {
  text-decoration: none !important;
}

.hx-transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
}

.hx-border-primary {
  border-color: var(--color-primary) !important;
}

.hx-bg-primary {
  background-color: var(--color-primary) !important;
}

.hx-text-white {
  color: white !important;
}

/* 原有分页样式 - 保留以防其他页面使用 */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
  list-style: none;
}

.page-item {
  list-style: none;
}

.page-link {
  display: block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid #e5e7eb;
  font-weight: 500;
  background: white;
}

.page-link:hover {
  background: var(--color-bg-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-item.active .page-link {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 6px rgba(228, 109, 29, 0.3);
}

.page-item.disabled .page-link {
  color: #9ca3af;
  pointer-events: none;
  background-color: #f9f7f8;
  border-color: #e5e7eb;
  transform: none;
  box-shadow: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.article-content ol {
  margin-left: 4px;
  padding-left: 1em;
}

ol {
  margin-left: 4px;
  padding-left: 1em; /* 原为 40px，可改为你想要的间距 */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Navigation */
.nav {
  background: var(--color-bg-dark);
  padding: var(--spacing-sm) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-logo svg {
  width: 32px;
  height: 32px;
}

.nav-menu {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background: #d45f15;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(228, 109, 29, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-dark);
  border: 2px solid var(--color-text-dark);
}

.btn-outline:hover {
  background: var(--color-text-dark);
  color: white;
}

/* Hero Section */
.hero {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  /* background: linear-gradient(135deg, transparent 0%, rgba(228, 109, 29, 0.1) 50%, rgba(76, 38, 192, 0.1) 100%); */
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}
.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.hero-partners {
  margin-top: var(--spacing-lg);
  opacity: 0.7;
}

.hero-partners p {
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.partner-logos {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 32px;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

/* Section Styles */
.section {
  padding: var(--spacing-xl) 0;
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.section-title span {
  color: var(--color-primary);
}

.section-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.feature-item {
  display: flex;
  gap: var(--spacing-sm);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(228, 109, 29, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  opacity: 0.8;
  line-height: 1.6;
}

.feature-image {
  background: rgba(76, 38, 192, 0.1);
  border-radius: 1rem;
  padding: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image img {
  max-width: 100%;
  border-radius: 0.5rem;
}

.story-image {
  background: rgba(76, 38, 192, 0.1);
  border-radius: 1rem;
  padding: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image img {
  max-width: 100%;
  border-radius: 0.5rem;
}

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.platform-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: var(--spacing-md);
  text-align: center;
  transition: all 0.3s;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.platform-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: var(--spacing-sm);
}

.platform-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Code Block */
.code-block {
  background: #000;
  border-radius: 0.75rem;
  padding: var(--spacing-sm);
  margin: var(--spacing-md) 0;
  overflow-x: auto;
}

.code-block code {
  color: #00ff00;
  font-family: 'Courier New', monospace;
  font-size: 0.70rem;
}

/* Testimonials */
.testimonials {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.testimonial-header h2 {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.testimonial-header p {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-md);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: var(--spacing-md);
  transition: all 0.3s;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
  font-style: normal;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.use-case-card {
  border-radius: 1rem;
  padding: var(--spacing-lg);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.use-case-card.orange {
  background: var(--color-orange-light);
}

.use-case-card.purple {
  background: var(--color-purple-light);
}

.use-case-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.use-case-card p {
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  text-align: center;
}

.cta-section h2 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-links h4 {
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--color-white);
}

.footer-social a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

/* 博客列表页样式 */
.hx-border-b {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hx-border-gray-200 {
  border-color: #e5e7eb;
}

.hx-text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.hx-font-bold {
  font-weight: 700;
}

.hx-mb-2 {
  margin-bottom: 0.5rem;
}

.hx-mb-4 {
  margin-bottom: 1rem;
}

/* 分页样式 */
.hx-list-none {
  list-style: none;
}

.hx-cursor-not-allowed {
  cursor: not-allowed;
}

.hx-no-underline {
  text-decoration: none !important;
}

.hx-transition-colors {
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
}

.hx-border-primary {
  border-color: var(--color-primary) !important;
}

.hx-bg-primary {
  background-color: var(--color-primary) !important;
}

.hx-text-white {
  color: white !important;
}

/* Download Page Styles */
.download-page .section {
  padding: var(--spacing-lg) 0;
}

.download-page .page-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

.download-page .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-dark);
}

.download-page .section-description {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}

/* Blog Page Styles */
.blog-page .page-header-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: var(--spacing-xl);
}

.blog-page .page-header {
  padding-top: 40px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.blog-page .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-dark);
  text-align: center;
}

.blog-page .section-description {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
  text-align: center;
}

.blog-page .blog-summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  max-height: 5.2em;
}

/* Support Page Styles */
.support-page .section {
  padding: var(--spacing-lg) 0;
}

.support-page .page-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

.support-page .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-dark);
}

.support-page .section-description {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}

.support-content {
  max-width: 1200px;
  margin: 0 auto;
}

.support-section {
  margin-bottom: var(--spacing-xl);
}

.support-heading {
  font-size: 1.5rem;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.support-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: var(--spacing-sm) 0 var(--spacing-md);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin: var(--spacing-md) 0;
  width: 100%;
  align-items: stretch;
}

.support-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem; /* 从原来的0.5rem改为0.25rem，减小圆角 */
  padding: var(--spacing-md);
  background: white;
  transition: all 0.3s ease;
  min-width: 0; /* 防止网格项溢出 */
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-card h3 {
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
  flex: 0 0 auto;
  align-self: flex-start;
}

.support-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.support-card h3 a:hover {
  text-decoration: underline;
}

.support-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  flex: 1 1 auto;
  align-self: flex-start;
}

.support-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.support-card-link:hover {
  text-decoration: none;
}

.support-card-link:focus {
  outline: none;
}

.support-table-wrapper {
  overflow-x: auto;
  margin: var(--spacing-md) 0;
}

.support-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  overflow: visible;
}

.support-table th,
.support-table td {
  padding: var(--spacing-sm);
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.support-table th {
  background-color: rgba(0, 0, 0, 0.05);
  font-weight: 600;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.support-table tr:last-child td {
  border-bottom: none;
}

.support-table a {
  color: var(--color-primary);
  text-decoration: none;
}

.support-table a:hover {
  text-decoration: underline;
}

.sales-form-section {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .sales-page .section-title {
    font-size: 2rem;
  }
  
  .sales-intro h2 {
    font-size: 1.5rem;
  }
  
  .sales-intro p {
    font-size: 1.1rem;
  }
  
  .sales-main-content {
    grid-template-columns: 1fr;
  }
  
  .sales-form-section {
    position: static;
  }
}

@media (max-width: 768px) {
  .support-page .content {
    padding: 0 var(--spacing-sm);
  }
  
  .support-page .content table {
    display: block;
    overflow-x: auto;
  }
  
  .support-page .section-title {
    font-size: 2rem;
  }
  
  .support-page .section-description {
    font-size: 1.1rem;
  }
  
  .support-page .page-header {
    margin-bottom: var(--spacing-lg);
  }
  
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  /* Download page responsive styles */
  .download-page .section-title {
    font-size: 2rem;
  }
  
  .download-page .section-description {
    font-size: 1.1rem;
  }
  
  .download-page .page-header {
    margin-bottom: var(--spacing-lg);
  }
  
  /* Blog page responsive styles */
  .blog-page .section-title {
    font-size: 2rem;
  }
  
  .blog-page .section-description {
    font-size: 1.1rem;
  }
  
  .blog-page .page-header {
    margin-bottom: var(--spacing-lg);
  }
}

@media (max-width: 968px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Download page styles */
.download-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-sm);
  margin: var(--spacing-lg) 0;
}

.download-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: var(--spacing-sm);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.platform-icon {
  margin-bottom: var(--spacing-xs);
  color: var(--color-primary);
}

.download-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.download-card p {
  margin-bottom: var(--spacing-sm);
  color: #6b7280;
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive styles for download grid */
@media (max-width: 1200px) {
  .download-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
  }
}

@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  .download-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
}

/* FAQ styles */
.faq-section {
  margin-top: var(--spacing-xl);
}

.faq-item {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.faq-answer {
  color: #6b7280;
  line-height: 1.6;
}

/* Feature section */
.feature-section {
  margin: var(--spacing-lg) 0;
}

.feature-item {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(228, 109, 29, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  opacity: 0.8;
  line-height: 1.6;
}

/* About page styles */
.about-page .hero {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.about-page .hero .container {
  display: flex;
  justify-content: center;
}

.about-page .hero-content {
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-page .hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.highlight {
  color: var(--color-primary);
}

/* Story Section */
.about-page .story-image {
  background: rgba(76, 38, 192, 0.1);
  border-radius: 1rem;
  padding: var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.about-page .story-image img {
  max-width: 100%;
  border-radius: 0.5rem;
}

/* Timeline Styles */
.about-page .story-timeline {
  padding-left: var(--spacing-lg);
}

.about-page .timeline {
  position: relative;
  max-width: 600px;
  margin: var(--spacing-lg) 0;
  text-align: left;
}

.about-page .timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gray-200);
  left: 31px;
}

.about-page .timeline-item {
  position: relative;
  margin-bottom: var(--spacing-lg);
  width: 100%;
  /* padding-left: calc(70px + var(--spacing-md)); */
  text-align: left;
}

.about-page .timeline-item::after {
  content: '';
  display: table;
  clear: both;
}

.about-page .timeline-item:last-child {
  margin-bottom: 0;
}

.about-page .timeline-date {
  position: absolute;
  width: 120px;
  left: 70px;
  top: 0;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
}

.about-page .timeline-content {
  padding-left: var(--spacing-sm);
  padding-top: 30px;
  padding-bottom: 30px;
  /* background: var(--color-white); */
  margin-left: 53px;
 
  /* border: 1px solid var(--color-gray-200); */
  /* border-radius: 0.5rem; */
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
  text-align: left;
}

.about-page .timeline-content h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
}

.about-page .timeline-content p {
  margin: 0;
  color: var(--color-gray-600);
  text-align: left;
}

/* Team Section - New Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.team-card {
  display: flex;
  border-radius: 0.75rem;
  border: 1px solid var(--color-gray-200);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  align-items: flex-start;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.team-avatar {
  flex-shrink: 0;
  margin-right: var(--spacing-md);
  text-align: center;
}

.team-avatar img {
  width: 100px;
  height: 120px;
  border-radius: 0.5rem;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--color-text-dark);
  position: relative;
  display: inline-block;
}

.team-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
}

.team-description {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-top: 1rem;
}

/* QR Code Styles for WeChat */
.wechat-container {
  position: relative;
  display: inline-block;
}

.wechat-qrcode {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
  width: 150px;
  height: 150px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-radius: 8px;
}

.wechat-link:hover + .wechat-qrcode {
  opacity: 1;
  visibility: visible;
}

/* QR Code Styles for Team Members */
.qr-code-container {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  cursor: pointer;
}

.wechat-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.qr-code-container:hover .wechat-icon {
  transform: scale(1.1);
}

.qr-popup {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
  display: none;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.qr-popup img {
  width: 150px;
  height: 150px;
  display: block;
}

.qr-code-container:hover .qr-popup {
  display: block;
}

.qr-popup::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent white transparent transparent;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .wechat-qrcode {
    display: none;
  }
  
  .qr-popup {
    display: none !important;
  }
}

/* Card Colors */
.card-orange {
  background: rgba(228, 109, 29, 0.05);
}

.card-purple {
  background: rgba(76, 38, 192, 0.05);
}

.card-blue {
  background: rgba(89, 161, 193, 0.05);
}



/* Contact Section */
.about-page .contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.about-page .contact-card {
  padding: var(--spacing-md);
  border: 1px solid var(--color-gray-200);
  border-radius: 0.5rem;
  text-align: center;
  background: var(--color-white);
}

.about-page .contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-page .contact-card a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.about-page .contact-card a:hover {
  text-decoration: underline;
}

.about-page .social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-page .social-links a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.about-page .social-links a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-page .hero-title {
    font-size: 2.5rem;
  }
  
  .about-page .two-column {
    grid-template-columns: 1fr;
  }
  
  .about-page .story-timeline {
    padding-left: 0;
    margin-top: var(--spacing-lg);
  }
  
  .about-page .timeline::before {
    left: 31px;
  }
  
  .about-page .timeline-item {
    padding-left: calc(70px + var(--spacing-md));
  }
  
  .about-page .timeline-date {
    left: 70px;
  }
  
  .about-page .principles-grid {
    grid-template-columns: 1fr;
  }
  
  
  
  .about-page .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Team Grid Responsive */
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-page .hero {
    padding: var(--spacing-lg) 0;
  }
  
  .about-page .hero-title {
    font-size: 2rem;
  }
  
  .about-page .section {
    padding: var(--spacing-lg) 0;
  }
  
  .about-page .section-title {
    font-size: 2rem;
  }
  
  .about-page .timeline {
    margin: var(--spacing-md) 0;
  }
  
  .about-page .timeline-item {
    margin-bottom: var(--spacing-md);
    padding-left: calc(50px + var(--spacing-sm));
  }
  
  .about-page .timeline-date {
    left: 50px;
    width: 100px;
  }
  
  .about-page .contact-grid {
    grid-template-columns: 1fr;
  }
  
  /* Team Card Responsive */
  .team-card {
    flex-direction: column;
    text-align: center;
  }
  
  .team-avatar {
    margin-right: 0;
    margin-bottom: var(--spacing-md);
  }
  
  .team-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-page .hero-title {
    font-size: 1.75rem;
  }
  
  .about-page .section-title {
    font-size: 1.5rem;
  }
  
  .about-page .timeline-item {
    padding-left: calc(40px + var(--spacing-sm));
  }
  
  .about-page .timeline-date {
    left: 40px;
    width: 80px;
    font-size: 0.9rem;
  }
  
  .about-page .timeline-content h4 {
    font-size: 1.1rem;
  }
  
  .about-page .principle-card {
    padding: var(--spacing-sm);
  }
  
  
  
  /* Team Avatar Responsive */
  .team-avatar img {
    width: 80px;
    height: 100px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
  }
  
  .team-role {
    font-size: 0.8rem;
  }
  
  .team-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  
  .team-name::after {
    bottom: -3px;
    height: 2px;
  }
  
  .team-description {
    margin-top: 0.75rem;
  }
}