
.container p,
.container a {
  line-height: 1.6;
  margin-top: 0.75rem;
}
/* STEPS GRID */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.step {
  padding: 2rem 1.5rem;
  border: 1px solid var(--neon);
  border-radius: 1rem;
  backdrop-filter: blur(6px);
  transition: all 0.3s;
  text-align: center;
}
.step:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--neon);
}
/* CTA */
.cta {
  text-align: center;
  margin-top: 3rem;
}
.cta a {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--neon);
  border-radius: 9999px;
  color: var(--neon);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.cta a:hover {
  background: var(--neon);
  color: var(--bg);
  transform: translateY(-3px) scale(1.03);
}
