body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0b0f1a;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.logo img {
  height: 45px;
}

.menu a {
  margin: 0 15px;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.menu a:hover {
  color: white;
}

.login {
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
}

.hero span {
  background: linear-gradient(90deg, #7c3aed, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin-top: 15px;
  color: #aaa;
  font-size: 18px;
}

.buttons {
  margin-top: 25px;
}

.btn {
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
}

.primary {
  background: #22c55e;
  color: white;
}

.secondary {
  border: 1px solid #555;
  color: white;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 60px;
}

.box {
  background: #111827;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.box:hover {
  transform: translateY(-5px);
  background: #1f2937;
}

.box h3 {
  margin-bottom: 10px;
}

.box p {
  color: #aaa;
}