
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
  background: linear-gradient(135deg, #0a1020, #0e1a3a);
  color: #fff;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px;
}

.cta-button {
  display: inline-block;
  padding: 28px 56px;
  font-size: 24px;
  background: #6fa3ff;
  color: #000;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 60px rgba(111,163,255,0.6);
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 0;
}
