.hero {
  max-width: 1200px;
  width: 100%; 
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.badge {
  margin-top: 2rem;
  margin-bottom: 1rem;
  background-color: rgba(0, 153, 255, 0.1);
  color: #0096d1;
  border: 1px solid #00315f;
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.95rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: rgb(3, 7, 61);
}

.highlight {
  color: #1900ff;
}

.description {
  font-size: 1.2rem;
  color: #c1c1c1;
  max-width: 700px;
  line-height: 1.6;
  background: linear-gradient(to right, #0099ff, #0051ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .description {
    font-size: 1rem;
    max-width: 90%;
  }

  .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .description {
    font-size: 0.9rem;
    max-width: 90%;
  }
}
