/* 玄域云 XDomain Cloud - 全局样式 */

/* CSS Variables */
:root {
  --primary-blue: #1E3A8A;
  --primary-blue-light: #3B82F6;
  --accent-orange: #F97316;
  --accent-orange-light: #FB923C;
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-gray: #F1F5F9;
  --text-dark: #1E293B;
  --text-gray: #64748B;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --success-green: #10B981;
  --error-red: #EF4444;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
  width: auto;
}

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

.logo-text .cn {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
}

.logo-text .en {
  font-size: 12px;
  color: var(--text-gray);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
  background: rgba(30, 58, 138, 0.05);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.dropdown-link:hover {
  background: rgba(30, 58, 138, 0.05);
  color: var(--primary-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.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-md);
  transition: all var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: white;
}

.btn-ghost {
  color: var(--text-dark);
  padding: 8px 16px;
}

.btn-ghost:hover {
  color: var(--primary-blue);
  background: rgba(30, 58, 138, 0.05);
}

.mobile-menu-btn {
  display: none;
  padding: 8px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(249, 115, 22, 0.04) 50%, rgba(30, 58, 138, 0.02) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(30, 58, 138, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.06) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-text h1 .gradient {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item .value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue);
}

.stat-item .value span {
  color: var(--accent-orange);
}

.stat-item .label {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

.dashboard-preview {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  border: 1px solid var(--border-color);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-brand .icon {
  width: 44px;
  height: 44px;
  background: var(--primary-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.dashboard-brand .name {
  font-weight: 600;
}

.dashboard-brand .sub {
  font-size: 12px;
  color: var(--text-gray);
}

.dashboard-dots {
  display: flex;
  gap: 8px;
}

.dashboard-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dashboard-dots span:nth-child(1) { background: #EF4444; }
.dashboard-dots span:nth-child(2) { background: #F59E0B; }
.dashboard-dots span:nth-child(3) { background: #10B981; }

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-card {
  padding: 16px;
  border-radius: var(--radius-md);
}

.dashboard-card.blue { background: rgba(30, 58, 138, 0.08); }
.dashboard-card.orange { background: rgba(249, 115, 22, 0.08); }
.dashboard-card.green { background: rgba(16, 185, 129, 0.08); }

.dashboard-card .label {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 8px;
}

.dashboard-card .value {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.dashboard-card.blue .value { color: var(--primary-blue); }
.dashboard-card.orange .value { color: var(--accent-orange); }
.dashboard-card.green .value { color: var(--success-green); }

.dashboard-card .change {
  font-size: 12px;
  color: var(--success-green);
}

.dashboard-chart {
  height: 120px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 16px;
}

.chart-bar {
  flex: 1;
  background: var(--primary-blue);
  border-radius: 4px 4px 0 0;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.chart-bar:hover {
  opacity: 1;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 20px;
  left: -30px;
  animation-delay: 2s;
}

.floating-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card.card-1 .icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-green);
}

.floating-card.card-2 .icon {
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-orange);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-gray);
}

/* Value Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

.value-card:nth-child(2) {
  margin-top: 40px;
}

.value-card .icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-card.blue .icon {
  background: rgba(30, 58, 138, 0.08);
  color: var(--primary-blue);
}

.value-card.orange .icon {
  background: rgba(249, 115, 22, 0.08);
  color: var(--accent-orange);
}

.value-card.green .icon {
  background: rgba(16, 185, 129, 0.08);
  color: var(--success-green);
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.value-card p {
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.value-tags span {
  padding: 6px 12px;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-gray);
}

/* Stories Section */
.stories-section {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.story-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.story-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.story-left {
  padding: 48px;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.story-avatar {
  position: relative;
}

.story-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(30, 58, 138, 0.1);
}

.story-avatar .status {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--success-green);
  border-radius: 50%;
  border: 2px solid white;
}

.story-info h3 {
  font-size: 22px;
  font-weight: 700;
}

.story-info p {
  color: var(--text-gray);
}

.story-info .sub {
  font-size: 14px;
  color: var(--text-light);
}

.story-pain {
  background: rgba(239, 68, 68, 0.05);
  border-left: 4px solid var(--error-red);
  padding: 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 24px;
}

.story-pain .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.story-pain p {
  color: var(--text-dark);
  font-style: italic;
}

.story-solutions .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.solution-item .check {
  width: 24px;
  height: 24px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-tags span {
  padding: 8px 16px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--primary-blue);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}

.story-right {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
  padding: 48px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.story-stat {
  text-align: center;
}

.story-stat .icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.story-stat .value {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.story-stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.story-quote {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.story-quote svg {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.story-quote p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.story-quote .author {
  color: rgba(255, 255, 255, 0.7);
}

.story-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.story-nav button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.story-nav button:hover {
  background: rgba(30, 58, 138, 0.05);
  border-color: var(--primary-blue);
}

.story-dots {
  display: flex;
  gap: 8px;
}

.story-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  padding: 0;
  transition: all var(--transition-fast);
}

.story-dots button.active {
  width: 32px;
  border-radius: 5px;
  background: var(--primary-blue);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

.feature-card .image {
  height: 180px;
  overflow: hidden;
}

.feature-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.feature-card .content {
  padding: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 16px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tags span {
  padding: 6px 12px;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-gray);
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-tags span {
  background: rgba(30, 58, 138, 0.08);
  color: var(--primary-blue);
}

/* Logo Scroll */
.logo-scroll-section {
  background: var(--bg-light);
  padding: 60px 0;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 32px;
  animation: scroll-left 30s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-track.reverse {
  animation: scroll-right 35s linear infinite;
  margin-top: 16px;
}

.logo-item {
  flex-shrink: 0;
  padding: 16px 32px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--text-dark);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Cases Grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.case-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.case-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
  padding: 32px;
  color: white;
}

.case-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.case-logo {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.case-brand h3 {
  font-size: 20px;
  font-weight: 700;
}

.case-brand span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.case-result {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-result svg {
  color: var(--success-green);
}

.case-result span {
  font-weight: 600;
}

.case-body {
  padding: 24px;
}

.case-body p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.case-tags span {
  padding: 6px 12px;
  background: var(--bg-light);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-gray);
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  font-weight: 600;
}

.case-link:hover {
  gap: 12px;
}

/* Partners Section */
.partners-section {
  background: var(--bg-light);
}

.partners-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partners-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.partners-text p {
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.partners-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.benefit-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-color);
}

.benefit-item .icon {
  width: 40px;
  height: 40px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.benefit-item .value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
}

.benefit-item .label {
  font-size: 14px;
  color: var(--text-gray);
}

.partners-map {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(30, 58, 138, 0.04) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  aspect-ratio: 1;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.map-bg svg {
  width: 100%;
  height: 100%;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
}

.map-marker .dot {
  width: 12px;
  height: 12px;
  background: var(--accent-orange);
  border-radius: 50%;
  position: relative;
}

.map-marker .dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--accent-orange);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.map-marker .label {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 4px;
}

.map-stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  justify-content: space-around;
}

.map-stat {
  text-align: center;
}

.map-stat .value {
  font-size: 28px;
  font-weight: 700;
}

.map-stat:nth-child(1) .value { color: var(--primary-blue); }
.map-stat:nth-child(2) .value { color: var(--accent-orange); }
.map-stat:nth-child(3) .value { color: var(--success-green); }

.map-stat .label {
  font-size: 12px;
  color: var(--text-gray);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
  padding: 100px 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta-actions .btn-primary {
  background: white;
  color: var(--primary-blue);
}

.cta-actions .btn-secondary {
  border-color: white;
  color: white;
}

.cta-actions .btn-secondary:hover {
  background: white;
  color: var(--primary-blue);
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo img {
  filter: brightness(0) invert(1);
  height: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.contact-item svg {
  color: var(--accent-orange);
  flex-shrink: 0;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--accent-orange);
}

.footer-qr {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.qr-item {
  text-align: center;
}

.qr-item .code {
  width: 96px;
  height: 96px;
  background: white;
  border-radius: var(--radius-md);
  padding: 8px;
  margin-bottom: 8px;
}

.qr-item .code div {
  width: 100%;
  height: 100%;
  background: var(--bg-gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-gray);
}

.qr-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 999;
  padding: 100px 24px 24px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
}

.mobile-dropdown {
  padding-left: 16px;
  padding-bottom: 16px;
  display: none;
}

.mobile-dropdown.active {
  display: block;
}

.mobile-dropdown a {
  display: block;
  padding: 12px 0;
  color: var(--text-gray);
}

.mobile-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.mobile-actions .btn {
  flex: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .values-grid,
  .features-grid,
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .value-card:nth-child(2) {
    margin-top: 0;
  }
  
  .story-content {
    grid-template-columns: 1fr;
  }
  
  .partners-content {
    grid-template-columns: 1fr;
  }
  
  .partners-map {
    aspect-ratio: 16/10;
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 36px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .values-grid,
  .features-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-benefits {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .cta-actions {
    flex-direction: column;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible,
.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ========================================
   新增页面样式 - 定价页、资源中心、关于我们
   ======================================== */

/* Hero Small */
.hero-small {
  min-height: 400px;
  padding-top: 120px;
  text-align: center;
}

.hero-small .hero-content {
  display: block;
}

.hero-small .hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-small .hero-subtitle {
  font-size: 20px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Search Box */
.search-box {
  max-width: 600px;
  margin: 40px auto 0;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 16px 60px 16px 24px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  font-size: 16px;
  transition: all var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--primary-blue);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-fast);
}

.search-btn:hover {
  background: var(--primary-blue-light);
}

.search-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Pricing Page */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.toggle-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.toggle-label.active {
  color: var(--primary-blue);
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-color);
  border-radius: 28px;
  transition: background var(--transition-fast);
}

.toggle-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary-blue);
}

.toggle-switch input:checked + .toggle-slider::after {
  transform: translateX(28px);
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-green);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-price .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-blue);
}

.pricing-price .amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.pricing-price .period {
  font-size: 16px;
  color: var(--text-gray);
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.pricing-features li.disabled {
  color: var(--text-light);
}

.icon-check,
.icon-close {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-check {
  fill: var(--success-green);
}

.icon-close {
  fill: var(--text-light);
}

.pricing-action .btn-block {
  width: 100%;
}

.pricing-custom {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(249, 115, 22, 0.03) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.pricing-custom h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-custom > p {
  color: var(--text-gray);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.custom-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.custom-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.custom-features .icon {
  width: 24px;
  height: 24px;
  fill: var(--success-green);
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-light);
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table .feature-name {
  font-weight: 500;
}

.icon-x {
  color: var(--text-light);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-color);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-answer {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Resource Categories */
.resource-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.resource-category {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.resource-category:hover,
.resource-category.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  width: 64px;
  height: 64px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-blue);
}

.category-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.resource-category h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.resource-category p {
  font-size: 14px;
  color: var(--text-gray);
}

/* Docs Grid */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.doc-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-normal);
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.doc-icon {
  width: 56px;
  height: 56px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.doc-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.doc-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.doc-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-blue);
  font-weight: 600;
}

.doc-link span {
  transition: transform var(--transition-fast);
}

.doc-link:hover span {
  transform: translateX(4px);
}

/* Dev Docs */
.dev-docs {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border-color);
}

.dev-intro {
  text-align: center;
  margin-bottom: 48px;
}

.dev-intro h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.dev-intro > p {
  color: var(--text-gray);
  margin-bottom: 32px;
}

.dev-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}

.dev-stat {
  text-align: center;
}

.dev-stat .stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.dev-stat .stat-label {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 8px;
}

.dev-resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dev-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-fast);
}

.dev-card:hover {
  background: rgba(30, 58, 138, 0.05);
}

.dev-icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 58, 138, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-blue);
}

.dev-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.dev-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.dev-card p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.dev-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 14px;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

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

.video-thumbnail {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: all var(--transition-fast);
}

.video-card:hover .video-play {
  transform: scale(1.1);
  background: white;
}

.video-play svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  margin-left: 4px;
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.video-info {
  padding: 24px;
}

.video-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.video-info > p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.video-meta {
  font-size: 13px;
  color: var(--text-light);
}

/* Report Grid */
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.report-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

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

.report-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.report-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-orange);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.report-image {
  height: 100%;
  min-height: 240px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
  position: relative;
}

.report-content {
  padding: 32px;
}

.report-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--primary-blue);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.report-card h3,
.report-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.report-card > p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.report-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.report-link {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Community Section */
.community-section {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(249, 115, 22, 0.03) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
}

.community-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.community-content > p {
  color: var(--text-gray);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.community-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.community-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition-fast);
}

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

.community-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-content > p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-blue);
}

.value-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.value-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  color: var(--text-gray);
}

.about-visual {
  position: relative;
  height: 400px;
}

.visual-element {
  position: absolute;
  border-radius: var(--radius-xl);
}

.visual-element.element-1 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
  top: 0;
  right: 0;
}

.visual-element.element-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
  bottom: 0;
  left: 0;
}

.visual-element.element-3 {
  width: 120px;
  height: 120px;
  background: var(--success-green);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border-color);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.timeline-content {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 300px;
}

.timeline-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-gray);
}

/* Stats Grid Large */
.stats-grid.large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  transition: all var(--transition-normal);
}

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

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-gray);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-avatar {
  margin-bottom: 20px;
}

.avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 48px;
  font-weight: 700;
  color: white;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Career Section */
.career-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.career-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.career-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.career-benefits li {
  display: flex;
  gap: 16px;
}

.career-benefits svg {
  width: 24px;
  height: 24px;
  fill: var(--success-green);
  flex-shrink: 0;
}

.career-benefits h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.career-benefits p {
  font-size: 14px;
  color: var(--text-gray);
}

.career-positions {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.career-positions h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.position-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.position-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: white;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.position-item:hover {
  box-shadow: var(--shadow-md);
}

.position-name {
  font-weight: 500;
}

.position-location {
  font-size: 14px;
  color: var(--text-gray);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  transition: all var(--transition-normal);
}

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

.contact-icon {
  width: 64px;
  height: 64px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-blue);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.contact-note {
  font-size: 14px;
  color: var(--text-gray);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-white {
  background: white;
  color: var(--primary-blue);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-fast);
}

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

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

/* Section Action */
.section-action {
  text-align: center;
  margin-top: 48px;
}

/* Responsive for new pages */
@media (max-width: 1024px) {
  .pricing-grid,
  .resource-categories,
  .docs-grid,
  .video-grid,
  .report-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .report-card.featured {
    grid-column: span 2;
  }
  
  .about-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-visual {
    height: 300px;
  }
  
  .stats-grid.large {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .career-section {
    grid-template-columns: 1fr;
  }
  
  .dev-resources {
    grid-template-columns: 1fr;
  }
  
  .community-links {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-small .hero-title {
    font-size: 32px;
  }
  
  .pricing-grid,
  .resource-categories,
  .docs-grid,
  .video-grid,
  .report-grid,
  .contact-grid,
  .stats-grid.large,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .report-card.featured {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    order: -1;
  }
  
  .about-values {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }
  
  .timeline-year {
    left: 20px;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    font-size: 12px;
  }
  
  .custom-features {
    flex-direction: column;
    gap: 16px;
  }
  
  .dev-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .community-section {
    padding: 40px 24px;
  }
}

/* Navbar hidden state */
.navbar.hidden {
  transform: translateY(-100%);
}

.navbar {
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Nav toggle animation */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

.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);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    display: block;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-actions {
    display: none;
  }
}

/* Body menu open state */
body.menu-open {
  overflow: hidden;
}
 /* AI Agent Float */
    .ai-agent-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      cursor: pointer;
    }

    .ai-agent-button {
      position: relative;
      width: 64px;
      height: 64px;
    }

    .ai-agent-avatar {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      box-shadow: 0 8px 32px rgba(30, 58, 138, 0.4);
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .ai-agent-avatar svg {
      width: 32px;
      height: 32px;
    }

    .ai-agent-float:hover .ai-agent-avatar {
      transform: scale(1.1);
      box-shadow: 0 12px 40px rgba(30, 58, 138, 0.5);
    }

    .ai-agent-pulse {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 64px;
      height: 64px;
      background: var(--primary-blue);
      border-radius: 50%;
      opacity: 0.4;
      z-index: 1;
      animation: aiPulse 2s ease-out infinite;
    }

    .ai-agent-pulse.delay {
      animation-delay: 1s;
    }

    @keyframes aiPulse {
      0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
      }
      100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
      }
    }

    .ai-agent-tooltip {
      position: absolute;
      right: 80px;
      top: 50%;
      transform: translateY(-50%);
      background: white;
      padding: 12px 16px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .ai-agent-tooltip::after {
      content: '';
      position: absolute;
      right: -8px;
      top: 50%;
      transform: translateY(-50%);
      border: 8px solid transparent;
      border-left-color: white;
    }

    .ai-agent-tooltip span {
      display: block;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 2px;
    }

    .ai-agent-tooltip small {
      color: var(--text-gray);
      font-size: 12px;
    }

    .ai-agent-float:hover .ai-agent-tooltip {
      opacity: 1;
      visibility: visible;
      right: 90px;
    }

    /* AI Chat Modal */
    .ai-chat-modal {
      position: fixed;
      bottom: 100px;
      right: 30px;
      width: 380px;
      height: 520px;
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      z-index: 10000;
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px) scale(0.95);
      transition: all 0.3s ease;
    }

    .ai-chat-modal.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }

    .ai-chat-header {
      padding: 16px 20px;
      background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
      border-radius: 20px 20px 0 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .ai-chat-title {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ai-chat-avatar {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }

    .ai-chat-avatar svg {
      width: 24px;
      height: 24px;
    }

    .ai-chat-title h4 {
      color: white;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .ai-status {
      color: rgba(255, 255, 255, 0.7);
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .ai-status::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #10b981;
      border-radius: 50%;
      animation: statusPulse 2s ease infinite;
    }

    @keyframes statusPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .ai-chat-close {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.3s ease;
    }

    .ai-chat-close:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .ai-chat-close svg {
      width: 18px;
      height: 18px;
    }

    .ai-chat-body {
      flex: 1;
      padding: 20px;
      overflow-y: auto;
      background: #f8fafc;
    }

    .ai-message {
      margin-bottom: 16px;
    }

    .ai-message-bot .ai-message-content {
      background: white;
      border-radius: 16px 16px 16px 4px;
      padding: 16px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .ai-message-user .ai-message-content {
      background: var(--primary-blue);
      color: white;
      border-radius: 16px 16px 4px 16px;
      padding: 12px 16px;
      margin-left: auto;
      max-width: 80%;
    }

    .ai-message-content p {
      margin-bottom: 8px;
      line-height: 1.6;
      font-size: 14px;
    }

    .ai-message-content p:last-child {
      margin-bottom: 0;
    }

    .ai-message-content ul {
      margin: 8px 0;
      padding-left: 20px;
    }

    .ai-message-content li {
      margin-bottom: 4px;
      font-size: 14px;
    }

    .ai-message-content a {
      color: var(--primary-blue);
      text-decoration: underline;
    }

    .ai-chat-footer {
      padding: 16px 20px;
      background: white;
      border-radius: 0 0 20px 20px;
      border-top: 1px solid #e2e8f0;
    }

    .ai-quick-replies {
      display: flex;
      gap: 8px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }

    .ai-quick-btn {
      padding: 6px 14px;
      background: rgba(30, 58, 138, 0.08);
      color: var(--primary-blue);
      border-radius: 16px;
      font-size: 13px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .ai-quick-btn:hover {
      background: var(--primary-blue);
      color: white;
    }

    .ai-input-area {
      display: flex;
      gap: 10px;
    }

    .ai-input-area input {
      flex: 1;
      padding: 12px 16px;
      border: 1px solid #e2e8f0;
      border-radius: 24px;
      font-size: 14px;
      outline: none;
      transition: all 0.3s ease;
    }

    .ai-input-area input:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    }

    .ai-send-btn {
      width: 44px;
      height: 44px;
      background: var(--primary-blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.3s ease;
    }

    .ai-send-btn:hover {
      background: #1e3a5f;
      transform: scale(1.05);
    }

    .ai-send-btn svg {
      width: 18px;
      height: 18px;
    }

    @media (max-width: 480px) {
      .ai-agent-float {
        bottom: 20px;
        right: 20px;
      }

      .ai-chat-modal {
        width: calc(100vw - 40px);
        height: 60vh;
        right: 20px;
        bottom: 90px;
      }
    }
