* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f8fafc;
  color: #0f172a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: #2563eb;
  color: #fff;
}

.btn.primary:hover {
  background: #1e4ed8;
}

.btn.outline {
  background: #fff;
  border: 1px solid #e2e8f0;
}

.btn.light {
  background: #fff;
  color: #2563eb;
  margin-top: 2vh;
}

.navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.login-link {
  margin-right: 16px;
  color: #475569;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 80px 0;
}

.badge {
  background: #e0e7ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.hero h1 {
  font-size: 48px;
  margin: 20px 0;
}

.highlight {
  color: #2563eb;
}

.hero p {
  max-width: 650px;
  margin: auto;
  color: #475569;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.stats {
  background: #fff;
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat h2 {
  color: #2563eb;
}

.features {
  padding: 80px 0;
  text-align: center;
}

.subtitle {
  color: #475569;
  margin-top: 10px;
}

.feature-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.how-it-works {
  padding: 80px 0;
  text-align: center;
}

.steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-number {
  font-size: 40px;
  color: #e0e7ff;
  font-weight: 700;
}

.cta {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  color: #fff;
}

.footer {
  background: #fff;
  padding: 20px 0;
  border-top: 1px solid #e5e7eb;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 900px) {
  .stats-grid,
  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }
}