/* ============================================
   home_block_12 — Conclusión + Mega-CTA cinematic
   ============================================ */
.home_block_12 {
  position: relative;
  overflow: hidden;
  padding: 12rem var(--main-padding);
}
.home_block_12_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.home_block_12_overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 26, 0.85) 0%, rgba(8, 13, 26, 0.95) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(245, 158, 11, 0.18) 0%, transparent 60%);
  z-index: 1;
}
.home_block_12_inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.home_block_12_card {
  background: var(--surface-bg-strong);
  border: 1px solid var(--accent-line-mid);
  border-radius: var(--radius-lg);
  padding: 5rem 4.4rem 4rem;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px var(--accent-glow);
  position: relative;
  overflow: hidden;
}
.home_block_12_topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  display: flex;
}
.home_block_12_topbar > span:nth-child(1) {
  flex: 1;
  background: var(--accent);
}
.home_block_12_topbar > span:nth-child(2) {
  flex: 1;
  background: var(--accent-2);
}
.home_block_12_topbar > span:nth-child(3) {
  flex: 1;
  background: var(--text);
}
.home_block_12_card > h2 {
  margin: 0;
}
.home_block_12_pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--bg-line);
  border-bottom: 1px solid var(--bg-line);
  list-style: none;
}
.home_block_12_pillars > li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.home_block_12_pillars > li > strong {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.home_block_12_cta_row {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.home_block_12_disclaimer {
  margin-top: 0.8rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .home_block_12 {
    padding: 16rem var(--main-padding);
  }
  .home_block_12_card {
    padding: 6rem 3rem 4rem;
  }
  .home_block_12_pillars {
    grid-template-columns: 1fr 1fr;
  }
  .home_block_12_pillars > li > strong {
    font-size: 5rem;
  }
  .home_block_12_cta_row {
    flex-direction: column;
  }
}
