.vision-section {
  padding: 100px 60px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.vision-content {
  max-width: 800px;
  text-align: center;
}

.subtitle {
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 20px;
  font-family: 'Plus Jakarta Sans';
}

.vision-content h2 {
  font-family: 'Plus Jakarta Sans';
  font-size: 42px;
  font-weight: 800;
  margin-top: 20px;
  color: #0a0a0a;
  /* Fancy Gradient Effekt */
  background: linear-gradient(90deg, #0a0a0a, #00ff88, #0a0a0a);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* gehört zum Teil "Fancy Gradient Effekt */

.vision-content p {
  font-family: 'Inter';
  font-size: 20px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-top: 20px;
}

.vision-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.stat-item strong {
  display: block;
  font-size: 32px;
  font-family: 'Plus Jakarta Sans';
  color: #00ff88;
}

.stat-item span {
  font-family: 'Inter';
}

/* Dadurch bekommen die Statistiken einen Kartenlook */

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 255, 136, 0.1);
  border-color: #00ff88;
}