/* ============================================
   BLOCK 2 — INSTALACIÓN ANDROID (split img-L / text-R + stepper)
   ============================================ */
.home_block_2_inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.home_block_2_text {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.home_block_2_sub {
  color: var(--accent);
}
.home_block_2_visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.home_block_2_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_2_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.home_block_2_steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.4rem;
}
.home_block_2_steps > li {
  counter-increment: step;
  position: relative;
  padding-left: 3.6rem;
  color: var(--text-muted);
  font-size: 1.18rem;
  line-height: 1.5;
}
.home_block_2_steps > li::before {
  content: counter(step);
  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);
}
.home_block_2_req {
  margin-top: 0.6rem;
  padding: 1.2rem 1.5rem;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 3px;
  color: var(--text);
}
@media (max-width: 1024px) {
  .home_block_2_inner { grid-template-columns: 1fr; gap: 4rem; }
  .home_block_2_visual { order: -1; }
  .home_block_2_steps > li { padding-left: 6rem; font-size: 2.4rem; }
  .home_block_2_steps > li::before { width: 4.2rem; height: 4.2rem; font-size: 2rem; }
}
