.investors-container {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 30px;
  font-family: 'Poppins', sans-serif;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.investors-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.investors-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #161925;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #0062FF, #00C6FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.investors-header .subtitle {
  font-size: 20px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.investors-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0062FF, #00C6FF);
  border-radius: 2px;
}

.investors-content {
  display: grid;
  gap: 30px;
  animation: slideInUp 0.8s 0.2s ease-out both;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.investor-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 30px;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 4px solid transparent;
}

.investor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 98, 255, 0.15);
}

.investor-card.highlight {
  background: linear-gradient(135deg, rgba(0, 98, 255, 0.03), rgba(0, 198, 255, 0.03));
  border-left: 4px solid #0062FF;
  position: relative;
  overflow: hidden;
}

.investor-card.highlight::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,98,255,0.1) 0%, rgba(0,98,255,0) 70%);
  border-radius: 50%;
  animation: pulse 6s infinite;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 0.1; }
  100% { opacity: 0.3; }
}

.card-icon {
  font-size: 50px;
  min-width: 70px;
  height: 70px;
  background: rgba(0, 98, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.investor-card:hover .card-icon {
  transform: scale(1.1);
  background: rgba(0, 98, 255, 0.2);
}

.card-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #161925;
  margin-top: 0;
  margin-bottom: 15px;
}

.card-content p {
  color: #555;
  line-height: 1.8;
  font-size: 17px;
  margin: 0;
}

.investors-cta {
  text-align: center;
  margin-top: 80px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(0, 98, 255, 0.03), rgba(0, 198, 255, 0.03));
  border-radius: 20px;
  border: 1px solid rgba(0, 98, 255, 0.1);
  animation: fadeIn 0.8s 0.4s ease-out both;
}

.investors-cta h3 {
  font-size: 32px;
  color: #161925;
  margin-bottom: 15px;
}

.investors-cta p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-button {
  background: linear-gradient(135deg, #0062FF, #00C6FF);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 45px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(0, 98, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 98, 255, 0.5);
}

.cta-button:active {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .investors-container {
    padding: 0 20px;
    margin: 60px auto;
  }
  
  .investors-header h2 {
    font-size: 36px;
  }
  
  .investor-card {
    flex-direction: column;
    padding: 30px;
  }
  
  .card-icon {
    margin-bottom: 20px;
  }
  
  .investors-cta {
    padding: 30px 20px;
  }
  
  .investors-cta h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .investors-header h2 {
    font-size: 32px;
  }
  
  .investors-header .subtitle {
    font-size: 18px;
  }
  
  .card-content h3 {
    font-size: 22px;
  }
  
  .card-content p {
    font-size: 16px;
  }
  
  .cta-button {
    width: 100%;
    padding: 14px;
  }
}