.phase-b-pathfinder,
.phase-b-context-strip {
  border-top: 1px solid rgba(93, 57, 119, 0.10);
  border-bottom: 1px solid rgba(93, 57, 119, 0.10);
  background: linear-gradient(180deg, rgba(249, 246, 252, 0.88), rgba(255, 255, 255, 0.96));
}

.phase-b-pathfinder {
  padding: 34px 0 38px;
}

.phase-b-pathfinder h2 {
  max-width: 760px;
  margin-bottom: 20px;
}

.phase-b-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.phase-b-choice {
  display: flex;
  min-width: 0;
  min-height: 178px;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(93, 57, 119, 0.16);
  border-radius: 18px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.phase-b-choice:hover,
.phase-b-choice:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(93, 57, 119, 0.34);
  box-shadow: 0 12px 30px rgba(58, 32, 78, 0.08);
}

.phase-b-choice strong {
  font-size: 1.02rem;
  line-height: 1.35;
}

.phase-b-choice span {
  color: var(--muted, #6f6875);
  line-height: 1.55;
}

.phase-b-choice em {
  margin-top: auto;
  color: #5d3977;
  font-style: normal;
  font-weight: 500;
}

.phase-b-choice-primary {
  border-color: rgba(93, 57, 119, 0.28);
  background: linear-gradient(145deg, rgba(247, 241, 251, 0.96), #fff);
}

.phase-b-context-strip {
  padding: 14px 0;
}

.phase-b-context-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.93rem;
  line-height: 1.5;
}

.phase-b-context-inner > div {
  min-width: 0;
}

.phase-b-context-inner a {
  font-weight: 500;
}

.phase-b-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 18px 0 2px;
  color: #5c5262;
  font-size: 0.92rem;
}

.phase-b-trust-line span {
  white-space: nowrap;
}

.phase-b-microcopy {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted, #6f6875);
  font-size: 0.9rem;
  line-height: 1.55;
}

.phase-b-value-copy {
  max-width: 720px;
}

.phase-b-services-pathfinder {
  border-top: 0;
}

@media (max-width: 900px) {
  .phase-b-choice-grid {
    grid-template-columns: 1fr;
  }

  .phase-b-choice {
    min-height: 0;
  }

  .phase-b-context-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .phase-b-pathfinder {
    padding: 24px 0 26px;
  }

  .phase-b-choice {
    padding: 18px;
    border-radius: 16px;
  }

  .phase-b-trust-line {
    display: grid;
    gap: 7px;
  }

  .phase-b-trust-line span {
    white-space: normal;
  }

  .phase-b-hero-actions {
    gap: 10px;
  }
}