.page-custom-systems-test .hp-metric strong {
  min-height: 2.7em;
  display: grid;
  place-items: center;
  font-size: clamp(.92rem, 1.55vw, 1.16rem);
  line-height: 1.35;
}

.page-custom-systems-test .hp-metric span {
  display: block;
  line-height: 1.45;
}

.page-custom-systems-test .hp-row {
  grid-template-columns: minmax(108px, auto) 1fr;
}

.page-custom-systems-test .hp-row .hp-label {
  line-height: 1.4;
}

.page-custom-systems-test .hp-bar .stage-analysis {
  width: 88%;
}

.page-custom-systems-test .hp-bar .stage-design {
  width: 72%;
}

.page-custom-systems-test .hp-bar .stage-delivery {
  width: 58%;
}

.custom-need-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.custom-need-card {
  height: 100%;
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}

.custom-need-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 148, 29, .25);
  box-shadow: var(--shadow);
}

.custom-need-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  color: #003b7a;
  background: var(--grad-gold);
  box-shadow: 0 12px 28px rgba(247, 148, 29, .22);
  font-size: 1.15rem;
}

.custom-need-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.custom-need-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.custom-experience-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  margin: 30px auto 0;
  padding: 15px 20px;
  border-radius: 18px;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  line-height: 1.75;
}

.custom-experience-note > i {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.25rem;
}

html[data-theme="dark"] .page-custom-systems-test .custom-need-card,
html[data-theme="dark"] .page-custom-systems-test .custom-experience-note {
  background: var(--card);
  border-color: var(--line);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .page-custom-systems-test .navbar-nav .nav-link {
    padding-inline: 7px;
  }
}

@media (max-width: 991px) {
  .custom-need-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .custom-need-grid {
    grid-template-columns: 1fr;
  }

  .page-custom-systems-test .hp-metrics {
    grid-template-columns: 1fr;
  }

  .page-custom-systems-test .hp-row {
    grid-template-columns: 96px 1fr;
  }

  .custom-experience-note {
    align-items: flex-start;
    padding: 14px 16px;
    text-align: start;
  }
}
