/**
 * Business Outcomes hub landing — parallax + 13 solution cards
 */
.boh-page {
  --boh-navy: #0B1F3A;
  --boh-deep: #123D6A;
  --boh-sky: #10A5F5;
  --boh-aqua: #00DBFF;
  --boh-canvas: #F3F6FB;
  --boh-muted: #475569;
  --boh-line: rgba(11, 31, 58, 0.1);
}

.boh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--boh-deep);
  background: rgba(16, 165, 245, 0.12);
  border: 1px solid rgba(16, 165, 245, 0.28);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.85rem;
}

.boh-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--boh-navy);
  margin: 0 0 0.75rem;
}

.boh-title span { color: var(--boh-sky); }

.boh-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--boh-muted);
  margin: 0;
  max-width: 40rem;
}

.boh-section { padding: 4.5rem 0; background: #fff; }
.boh-section--canvas { background: var(--boh-canvas); }

/* Parallax bands */
.boh-parallax {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--boh-canvas);
}

.boh-parallax__bg {
  position: absolute;
  inset: -18% 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  will-change: transform;
}

.boh-parallax__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(243, 246, 251, 0.94) 100%
  );
}

.boh-parallax__veil--strong {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(243, 246, 251, 0.92) 100%
  );
}

.boh-parallax__content { position: relative; z-index: 2; }

/* Solution cards */
.boh-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .boh-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .boh-grid { grid-template-columns: repeat(3, 1fr); }
}

.boh-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.45rem 1.35rem 1.35rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid var(--boh-line);
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.06);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 100%;
}

.boh-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 165, 245, 0.45);
  box-shadow: 0 22px 48px rgba(16, 165, 245, 0.14);
}

.boh-card:focus-visible {
  outline: 2px solid var(--boh-aqua);
  outline-offset: 3px;
}

.boh-card__num {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: rgba(11, 31, 58, 0.25);
}

.boh-card__icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--boh-deep), var(--boh-sky));
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.boh-card__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 750;
  color: var(--boh-navy);
  line-height: 1.3;
}

.boh-card__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--boh-muted);
  flex: 1;
}

.boh-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--boh-deep);
}

.boh-card:hover .boh-card__cta { color: var(--boh-sky); }

.boh-card__related {
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: capitalize;
}

/* Related rows */
.boh-related-list {
  display: grid;
  gap: 0.65rem;
  max-width: 52rem;
}

.boh-related-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.95rem 1.15rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--boh-line);
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.05);
}

.boh-related-row__main {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--boh-navy);
  text-decoration: none;
}

.boh-related-row__main i { color: var(--boh-sky); }

.boh-related-row__svc {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--boh-deep);
  text-decoration: none;
}

.boh-related-row__svc:hover { color: var(--boh-sky); }

/* Value */
.boh-value-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .boh-value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .boh-value-grid { grid-template-columns: repeat(4, 1fr); }
}

.boh-value {
  padding: 1.35rem 1.2rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid var(--boh-line);
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.05);
}

.boh-value i {
  color: var(--boh-sky);
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.boh-value h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 750;
  color: var(--boh-navy);
}

.boh-value p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--boh-muted);
}

/* CTA band */
.boh-cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.boh-cta-band__bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.boh-cta-band__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.92), rgba(18, 61, 106, 0.88));
}

@media (prefers-reduced-motion: reduce) {
  .boh-card { transition: none; }
  .boh-card:hover { transform: none; }
}
