.industry-benchmarking-card {
  margin: 18px 0;
  padding: 20px;
  border: 1px solid #cfe1ea;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fcfd 0%, #eef8f5 100%);
  color: #0f2f4a;
  box-shadow: 0 14px 34px rgba(15, 47, 74, 0.08);
}

.industry-benchmarking-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.industry-benchmarking-card__eyebrow {
  margin: 0 0 5px;
  color: #007766;
  font-size: 0.86rem;
  font-weight: 800;
}

.industry-benchmarking-card h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.industry-benchmarking-card__pill {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #dff4ef;
  color: #007766;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.industry-benchmarking-card__message {
  margin: 0;
  max-width: 920px;
  color: #49647c;
  font-size: 1rem;
  line-height: 1.55;
}

.industry-benchmarking-card__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.industry-benchmarking-card__stat {
  padding: 13px;
  border: 1px solid #d7e3ea;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
}

.industry-benchmarking-card__stat span {
  display: block;
  color: #63758a;
  font-size: 0.78rem;
  font-weight: 800;
}

.industry-benchmarking-card__stat strong {
  display: block;
  margin-top: 4px;
  color: #143555;
  font-size: 1.05rem;
}

.industry-benchmarking-card__privacy {
  margin: 14px 0 0;
  color: #63758a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.industry-benchmarking-card--placeholder {
  background: #f8fbfc;
  box-shadow: none;
}

@media (max-width: 760px) {
  .industry-benchmarking-card {
    padding: 16px;
  }

  .industry-benchmarking-card__header {
    display: block;
  }

  .industry-benchmarking-card__pill {
    display: inline-flex;
    margin-top: 10px;
  }

  .industry-benchmarking-card__stats {
    grid-template-columns: 1fr;
  }
}
