/* Home identity sections: audience paths, steps, closing CTA */

.np-paths,
.np-steps,
.np-cta {
  padding: clamp(3rem, 6vw, 4.75rem) 0;
}

.np-paths__intro,
.np-steps__intro {
  max-width: 40rem;
  margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
}

.np-paths__title,
.np-steps__title {
  margin: 0 0 0.55rem;
  color: var(--sa-ink, #0f172a);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
}

.np-paths__lead,
.np-steps__lead,
.np-cta__body {
  margin: 0;
  color: var(--sa-muted, #475569);
  font-size: 0.95rem;
  line-height: 1.7;
}

.np-paths__grid,
.np-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.np-paths__card,
.np-steps__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border: 1px solid rgba(var(--np-hero-primary-rgb, 27, 131, 84), 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.np-paths__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sa-green-soft, #e8f4ee);
  color: var(--sa-green-dark, #135f3d);
  font-size: 1.15rem;
}

.np-paths__card-title,
.np-steps__card-title {
  margin: 0;
  color: var(--sa-ink, #0f172a);
  font-size: 1.08rem;
  font-weight: 700;
}

.np-paths__card-body,
.np-steps__card-body {
  margin: 0;
  color: var(--sa-muted, #475569);
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
}

.np-paths__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  color: var(--sa-green, #1b8354);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.np-paths__link:hover {
  color: var(--sa-green-dark, #135f3d);
  gap: 0.55rem;
}

[dir="ltr"] .np-paths__link i {
  transform: scaleX(-1);
}

.np-steps {
  background:
    radial-gradient(circle at 12% 20%, rgba(var(--np-hero-primary-rgb, 27, 131, 84), 0.05), transparent 42%),
    var(--sa-mist, #f7faf8);
}

.np-steps__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.np-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sa-green-dark, #135f3d), var(--sa-green, #1b8354));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.np-cta__copy {
  max-width: 40rem;
  margin-inline: auto;
}

.np-cta__panel {
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border-radius: 22px;
  background:
    linear-gradient(125deg, var(--sa-green-dark, #135f3d) 0%, var(--sa-green, #1b8354) 58%, var(--sa-green-light, #2d9a6a) 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 40px rgba(var(--np-hero-overlay-rgb, 19, 95, 61), 0.28);
}

.np-cta__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
}

.np-cta__title {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
}

.np-cta__body {
  max-width: 36rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
}

.np-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.np-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.55rem 1.25rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.np-cta__btn--primary {
  background: #fff;
  color: var(--sa-green-dark, #135f3d);
}

.np-cta__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.np-cta__btn--primary:hover,
.np-cta__btn--ghost:hover {
  filter: brightness(1.06);
  color: inherit;
}

@media (max-width: 991.98px) {
  .np-paths__grid,
  .np-steps__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .np-paths__grid,
  .np-steps__grid {
    grid-template-columns: 1fr;
  }
}
