/* ============================================
   BLOCK 3 — INSTALACIÓN iOS (split text-L / img-R)
   ============================================ */
.home_block_3_inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.home_block_3_text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.home_block_3_visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.home_block_3_visual::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  background: radial-gradient(circle at 50% 45%, var(--accent-2-soft) 0%, transparent 65%);
  filter: blur(26px);
  z-index: 0;
}
.home_block_3_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .home_block_3_inner { grid-template-columns: 1fr; gap: 4rem; }
  .home_block_3_visual { order: -1; }
}
