/* ============================================
   home_block_10 — Cómo retirar (5-step horizontal stepper)
   ============================================ */
.home_block_10 {
  background: var(--bg-dark);
}
.home_block_10_inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.home_block_10_head {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.home_block_10_head > h2 {
  margin: 0;
}
.home_block_10_steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.home_block_10_steps::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-line-mid) 20%, var(--accent-line-mid) 80%, transparent);
  z-index: 0;
}
.home_block_10_step {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius-sm);
  padding: 2.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}
.home_block_10_step > h3 {
  margin: 0;
}
.home_block_10_step_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  box-shadow: 0 0 18px var(--accent-glow);
  align-self: flex-start;
  margin-bottom: 0.4rem;
}
.home_block_10_cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .home_block_10_steps {
    grid-template-columns: 1fr;
  }
  .home_block_10_steps::before {
    display: none;
  }
  .home_block_10_step_num {
    width: 7rem;
    height: 7rem;
    font-size: 2.4rem;
  }
}
