* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  background: #0b0b0f;
  color: #ffffff;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar h1 {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* Hero */
.hero {
  padding: 80px 40px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  color: #bdbdbd;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #ff2e2e;
  color: white;
}

.btn.primary:hover {
  background: #ff4d4d;
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 60px 40px;
  max-width: 1100px;
  margin: auto;
}

.feature {
  background: #14141c;
  padding: 25px;
  border-radius: 12px;
}

.feature h3 {
  margin-bottom: 10px;
}

.feature p {
  color: #cfcfcf;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.1);
}
