body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #0f172a;
  color: #e2e8f0;
}

a {
  color: #e53935;
  cursor: pointer;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #e53935;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 25px;
  color: #94a3b8;
}

.btn {
  display: inline-block;
  margin: 10px 5px;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn-primary {
  background: #e53935;
  color: #ffffff;
}

.btn-primary:hover {
  background: #c62828;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: #e53935;
  color: #ffffff;
  transform: translateY(-2px);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.badges img {
  display: block;
  height: 28px;
}

h2 {
  font-size: 2rem;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #f1f5f9;
}

.features {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature {
  background: #1e293b;
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.2s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  color: #e53935;
  margin-bottom: 8px;
}

.screenshots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.screenshot {
  flex: 1 1 250px;
  max-width: 300px;
}

.screenshot img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.screenshot img:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .screenshots {
    gap: 12px;
  }
  .screenshot {
    max-width: 90%;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}

footer {
  text-align: center;
  margin-top: 80px;
  color: #64748b;
  padding-bottom: 40px;
}

.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  background: #e53935;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-weight: bold;
}
