/* ==================== Global GEO 页面样式 ==================== */

/* Hero 区域 */
.geo-hero-section {
  min-height: 450px;
  position: relative;
  padding: 95px 0 75px;
  overflow: hidden;
}

/* 背景模糊层 */
.geo-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/geo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: 0;
}

/* 遮罩层 */
.geo-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 26, 46, 0.85) 0%, rgba(26, 35, 50, 0.75) 50%, rgba(10, 26, 46, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.geo-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.geo-hero-content {
  position: relative;
  z-index: 3;
}

.geo-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.geo-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.geo-breadcrumb a:hover {
  color: #64c8ff;
}

.geo-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

.geo-breadcrumb-current {
  color: #64c8ff;
}

.geo-hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.geo-hero-description {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.8;
  margin: 0 0 40px 0;
  max-width: 600px;
}

.geo-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.geo-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #64c8ff 0%, #236be4 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(100, 200, 255, 0.3);
}

.geo-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(100, 200, 255, 0.4);
}

.geo-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.geo-hero-btn-secondary:hover {
  border-color: #64c8ff;
  color: #64c8ff;
  background: rgba(100, 200, 255, 0.1);
}


/* 技术特点区域 */
.geo-features-section {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.geo-features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.geo-features-header {
  margin-bottom: 60px;
}

.geo-features-title {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0 0 24px 0;
  position: relative;
  display: block;
  width: 100%;
  line-height: 1.2;
}

.geo-features-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.geo-features-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 8px;
  line-height: 1.5;
}

.geo-features-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #64c8ff;
}

.geo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.geo-feature-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.geo-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 200, 255, 0.3);
  box-shadow: 0 12px 32px rgba(100, 200, 255, 0.15);
}

.geo-feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(100, 200, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.geo-feature-icon svg {
  width: 32px;
  height: 32px;
  color: #64c8ff;
}

.geo-feature-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.geo-feature-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
}

/* 应用场景区域 */
.geo-scenarios-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a2332 0%, #151b26 100%);
  position: relative;
}

.geo-scenarios-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.geo-scenarios-header {
  text-align: center;
  margin-bottom: 60px;
}

.geo-scenarios-title {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0 0 16px 0;
}

.geo-scenarios-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.geo-scenarios-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #64c8ff;
}

.geo-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.geo-scenario-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
  backdrop-filter: blur(10px);
}

.geo-scenario-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 200, 255, 0.3);
  box-shadow: 0 12px 32px rgba(100, 200, 255, 0.15);
}

.geo-scenario-icon {
  width: 48px;
  height: 48px;
  background: rgba(100, 200, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.geo-scenario-icon svg {
  width: 24px;
  height: 24px;
  color: #64c8ff;
}

.geo-scenario-content {
  flex: 1;
}

.geo-scenario-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.geo-scenario-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* 为什么选择我们区域 */
.geo-why-section {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.geo-why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.geo-why-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 60px 0;
}

.geo-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.geo-why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.geo-why-icon {
  width: 32px;
  height: 32px;
  background: rgba(100, 200, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.geo-why-icon svg {
  width: 18px;
  height: 18px;
  color: #64c8ff;
}

.geo-why-content {
  flex: 1;
}

.geo-why-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.geo-why-item-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0;
}

/* 统计数据区域 */
.geo-stats-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a2332 0%, #151b26 100%);
  position: relative;
}

.geo-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.geo-stat-card {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.geo-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 200, 255, 0.3);
  box-shadow: 0 12px 32px rgba(100, 200, 255, 0.15);
}

.geo-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0 0 16px 0;
  line-height: 1;
}

.geo-stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* CTA 区域 */
.geo-cta-section {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.geo-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.geo-cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(100, 200, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
}

.geo-cta-icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(100, 200, 255, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.geo-cta-icon svg {
  width: 40px;
  height: 40px;
  color: #64c8ff;
  position: relative;
  z-index: 1;
}

.geo-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0 0 20px 0;
}

.geo-cta-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0 0 40px 0;
}

.geo-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.geo-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #64c8ff 0%, #236be4 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(100, 200, 255, 0.3);
}

.geo-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(100, 200, 255, 0.4);
}

.geo-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.geo-cta-btn-secondary:hover {
  border-color: #64c8ff;
  color: #64c8ff;
  background: rgba(100, 200, 255, 0.1);
}

.geo-cta-footer {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.geo-cta-footer-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px 0;
}

.geo-cta-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.geo-cta-footer-link:hover {
  color: #64c8ff;
}

/* 滚动动画 */
.geo-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.geo-feature-card,
.geo-scenario-card,
.geo-why-item,
.geo-stat-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.geo-feature-card.visible,
.geo-scenario-card.visible,
.geo-why-item.visible,
.geo-stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 延迟动画 */
.geo-feature-card:nth-child(1) { transition-delay: 0.1s; }
.geo-feature-card:nth-child(2) { transition-delay: 0.2s; }
.geo-feature-card:nth-child(3) { transition-delay: 0.3s; }

.geo-scenario-card:nth-child(1) { transition-delay: 0.1s; }
.geo-scenario-card:nth-child(2) { transition-delay: 0.2s; }
.geo-scenario-card:nth-child(3) { transition-delay: 0.3s; }

.geo-why-item:nth-child(1) { transition-delay: 0.1s; }
.geo-why-item:nth-child(2) { transition-delay: 0.2s; }
.geo-why-item:nth-child(3) { transition-delay: 0.3s; }
.geo-why-item:nth-child(4) { transition-delay: 0.4s; }

.geo-stat-card:nth-child(1) { transition-delay: 0.1s; }
.geo-stat-card:nth-child(2) { transition-delay: 0.2s; }
.geo-stat-card:nth-child(3) { transition-delay: 0.3s; }

/* 数字计数动画 */
.geo-stat-number {
  transition: all 0.3s ease;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .geo-features-grid,
  .geo-scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .geo-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .geo-hero-section {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .geo-hero-section::before {
    filter: blur(6px);
    transform: scale(1.03);
  }

  .geo-hero-title {
    font-size: 42px;
  }

  .geo-hero-description {
    font-size: 16px;
  }

  .geo-breadcrumb {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .geo-features-section,
  .geo-scenarios-section,
  .geo-why-section,
  .geo-stats-section,
  .geo-cta-section {
    padding: 60px 0;
  }

  .geo-features-header,
  .geo-scenarios-header {
    margin-bottom: 40px;
  }

  .geo-features-title,
  .geo-scenarios-title,
  .geo-why-title {
    font-size: 32px;
  }

  .geo-features-title::before {
    width: 60px;
  }

  .geo-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .geo-feature-card {
    padding: 16px 8px;
  }

  .geo-feature-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }

  .geo-feature-icon svg {
    width: 16px;
    height: 16px;
  }

  .geo-feature-title {
    font-size: 14px;
    margin: 0 0 6px 0;
  }

  .geo-feature-description {
    font-size: 11px;
    line-height: 1.5;
  }

  .geo-scenarios-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .geo-scenario-card {
    flex-direction: column;
    text-align: center;
    padding: 16px 8px;
  }

  .geo-scenario-icon {
    margin: 0 auto;
    width: 32px;
    height: 32px;
  }

  .geo-scenario-icon svg {
    width: 16px;
    height: 16px;
  }

  .geo-scenario-title {
    font-size: 14px;
    margin: 0 0 6px 0;
  }

  .geo-scenario-description {
    font-size: 11px;
    line-height: 1.5;
  }

  .geo-why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .geo-why-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .geo-why-icon {
    margin: 0 auto;
  }

  .geo-why-content {
    text-align: center;
  }

  .geo-why-item-title {
    text-align: center;
  }

  .geo-why-item-description {
    text-align: center;
  }

  .geo-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .geo-stat-card {
    padding: 20px 12px;
  }

  .geo-stat-number {
    font-size: 28px;
    margin: 0 0 8px 0;
  }

  .geo-stat-label {
    font-size: 12px;
  }

  .geo-cta-title {
    font-size: 28px;
  }

  .geo-cta-description {
    font-size: 15px;
  }

  .geo-cta-buttons {
    flex-direction: column;
  }

  .geo-cta-btn-primary,
  .geo-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .geo-cta-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .geo-cta-icon svg {
    width: 32px;
    height: 32px;
  }
}

