.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-content h3 {
  font-size: 1.5rem;
  color: #6e57ff;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.5s;
}

.hero-content h1 {
  font-size: 4.5rem;
  background: linear-gradient(90deg, #6e57ff, #a78bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s forwards 0.8s;
}

.hero-content h2 {
  font-size: 1.8rem;
  color: #aaa;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s forwards 1.1s;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 500px;
  opacity: 0;
  animation: fadeInUp 1s forwards 1.4s;
}

.hero-buttons {
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 1s forwards 1.7s;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-right: 1rem;
  transition: all 0.4s;
}

.btn-primary {
  background: #6e57ff;
  color: white;
}

.btn-primary:hover {
  background: #5a45e0;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(110, 87, 255, 0.4);
}

.btn-secondary {
  border: 2px solid #6e57ff;
  color: #6e57ff;
}

.btn-secondary:hover {
  background: #6e57ff;
  color: white;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  border: 4px solid rgba(11012, 87, 255, 0.3);
  opacity: 0;
  animation: fadeInRight 1.2s forwards 0.6s;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  .hero-content h1 { font-size: 3.5rem; }
  .hero-image img { max-width: 350px; margin: 0 auto; }
}

