/* ============================================
   BLOCK 9 — REGISTRO (split img-L / numbered ways-R)
   ============================================ */
.home_block_9_inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.home_block_9_text {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.home_block_9_visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.home_block_9_visual::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  background: radial-gradient(circle at 50% 45%, var(--accent-glow) 0%, transparent 65%);
  filter: blur(26px);
  z-index: 0;
}
.home_block_9_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.home_block_9_ways {
  counter-reset: way;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.4rem;
}
.home_block_9_ways > li {
  counter-increment: way;
  position: relative;
  padding-left: 3.6rem;
  color: var(--text-muted);
  font-size: 1.18rem;
  line-height: 1.5;
}
.home_block_9_ways > li > strong {
  color: var(--text);
}
.home_block_9_ways > li::before {
  content: counter(way);
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--bg-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 3px;
  box-shadow: 2px 2px 0 var(--accent-dark);
}
@media (max-width: 1024px) {
  .home_block_9_inner { grid-template-columns: 1fr; gap: 4rem; }
  .home_block_9_visual { order: -1; }
  .home_block_9_ways > li { padding-left: 6rem; font-size: 2.4rem; }
  .home_block_9_ways > li::before { width: 4.2rem; height: 4.2rem; font-size: 2rem; }
}
