.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.pricing-comparison {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  overflow-x: auto;
  margin-bottom: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-primary);
  border-radius: 8px;
  overflow: hidden;
}

table th,
table td {
  padding: 18px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  border-bottom: 1px solid var(--border-color);
}

table th {
  background: var(--gradient-1);
  color: white;
  font-weight: 600;
  font-family: 'Orbitron', sans-serif;
}

table th.competitor {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

table th.our-price {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

table th.savings {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

table tr:hover {
  background-color: var(--bg-hover);
}

table td {
  color: var(--text-secondary);
}

table td.competitor {
  color: #f87171;
  font-weight: 600;
}

table td.our-price {
  color: #34d399;
  font-weight: 600;
  font-size: 18px;
}

table td.savings {
  color: #fbbf24;
  font-weight: 600;
}

.pricing-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.highlight-card {
  background: var(--bg-primary);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.highlight-card h3 {
  margin: 0 0 10px 0;
  color: var(--text-primary);
  font-size: 1.2rem;
  font-family: 'Orbitron', sans-serif;
}

.highlight-card p {
  margin: 0;
  color: var(--text-secondary);
}

.cta-section {
  text-align: center;
  background: var(--gradient-1);
  border-radius: 16px;
  padding: 60px 40px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  color: white;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Orbitron', sans-serif;
  color: white;
  margin-bottom: 20px;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  border: none;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-primary,
.cta-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.cta-primary {
  background: white;
  color: var(--accent-primary);
  box-shadow: var(--shadow-md);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #f8fafc;
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-secondary:hover {
  background: white;
  color: var(--accent-primary);
  transform: translateY(-2px);
}

.section-title-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
  z-index: 1;
}

.faq-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.faq-item {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-primary);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.faq-item h3 {
  color: var(--text-primary);
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  font-family: 'Orbitron', sans-serif;
}

.faq-item p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.global-service {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: var(--shadow-sm);
}

.global-service img {
  border-radius: 12px;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  box-shadow: var(--shadow-md);
}

@media only screen and (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .pricing-comparison {
    padding: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }
}