/* ── QUÉ ES LA NOM — split section ── */
.nom-section { background: var(--bg); padding: 96px 0; }
.nom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-top: 52px;
  align-items: center;
}
.nom-img {
  border-radius: 12px; overflow: hidden; position: relative;
}
.nom-img img { width: 100%; height: 360px; object-fit: cover; display: block; }
.nom-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}
/* NOM badge overlay */
.nom-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--blue); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 6px; line-height: 1.3;
  text-align: center;
}
.nom-text p {
  font-size: 16px; color: var(--muted); line-height: 1.75;
  margin-bottom: 20px;
}
.nom-text p:last-child { margin-bottom: 0; }
.nom-alert {
  background: rgba(19,126,168,.07);
  border: 1px solid rgba(19,126,168,.2);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 14.5px; color: var(--ink-2); line-height: 1.6;
  margin-top: 24px;
}
.nom-alert strong { color: var(--blue); }

/* ── POR QUÉ ES CRUCIAL ── */
.crucial-section { background: var(--bg-2); padding: 96px 0; }
.crucial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 52px;
}
.crucial-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 10px; padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.crucial-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--red));
  transform: scaleY(0); transform-origin: top;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.crucial-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px -8px rgba(0,0,0,.1); border-color: rgba(19,126,168,.25); }
.crucial-card:hover::before { transform: scaleY(1); }
.crucial-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(19,126,168,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.crucial-card:hover .crucial-icon { background: var(--blue); }
.crucial-icon svg { width: 22px; height: 22px; stroke: var(--blue); stroke-width: 1.8; fill: none; transition: stroke .3s; }
.crucial-card:hover .crucial-icon svg { stroke: #fff; }
.crucial-body h4 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 17px; letter-spacing: -.01em; color: var(--ink); margin-bottom: 6px; }
.crucial-body p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── CÓMO ASEGURAMOS ── */
.how-section { background: var(--ink-2); padding: 96px 0; position: relative; overflow: hidden; }
.how-section::before {
  content: 'NOM';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: clamp(120px,16vw,220px); color: rgba(255,255,255,.03);
  letter-spacing: -.06em; line-height: 1;
  pointer-events: none; user-select: none;
}
.how-section .section-tag { color: var(--blue); }
.how-section .section-tag::before { background: var(--blue); }
.how-section .section-title { color: #fff; }
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 52px;
  position: relative; z-index: 2;
}
.how-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  transition: border-color .3s, transform .25s;
}
.how-step:hover { border-color: rgba(19,126,168,.4); transform: translateX(4px); }
.how-step-num {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 32px; line-height: 1; letter-spacing: -.04em;
  color: var(--blue); flex-shrink: 0; min-width: 40px;
}
.how-step-body h4 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 6px; }
.how-step-body p  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── NEXT STEP CTA ── */
.next-step { background: var(--bg); padding: 96px 0; }
.next-step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.next-step-text .section-tag { margin-bottom: 14px; }
.next-step-text h2 { margin-bottom: 20px; }
.next-step-text p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.next-step-text p:last-of-type { margin-bottom: 32px; }
.next-step-img {
  border-radius: 12px; overflow: hidden;
}
.next-step-img img { width: 100%; height: 320px; object-fit: cover; display: block; }

/* Responsive */
@media (min-width: 640px) {
  .crucial-grid { grid-template-columns: repeat(2,1fr); }
  .how-grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 900px) {
  .nom-grid { grid-template-columns: 1fr 1fr; }
  .nom-img img { height: 460px; }
  .crucial-grid { grid-template-columns: repeat(2,1fr); }
  .how-grid { grid-template-columns: repeat(2,1fr); }
  .next-step-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
  .next-step-img img { height: 420px; }
}