/* ── OHP Trust & Credibility Bar Styles ──────────────────────────────────── */

:root {
  --ohp-green:  #1A6B3C;
  --ohp-lime:   #4ADE80;
  --ohp-gold:   #D4A843;
  --ohp-dark:   #0A1A0F;
  --ohp-muted:  #8A9E8F;
  --ohp-white:  #FFFFFF;
  --ohp-font:   'DM Sans', sans-serif;
}

/* ── Top Bar ── */
.ohp-trust-bar {
  background: var(--ohp-dark);
  border-bottom: 1px solid rgba(74,222,128,0.12);
  padding: 8px 20px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 200;
}

.ohp-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  animation: ohp-trust-scroll 30s linear infinite;
}

/* On small screens, scroll the bar */
@media (max-width: 900px) {
  .ohp-trust-bar { overflow: hidden; }
  .ohp-trust-bar__inner {
    width: max-content;
    animation: ohp-trust-scroll 20s linear infinite;
  }
  .ohp-trust-bar:hover .ohp-trust-bar__inner { animation-play-state: paused; }
}

@media (min-width: 901px) {
  .ohp-trust-bar__inner { animation: none; flex-wrap: wrap; }
}

@keyframes ohp-trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ohp-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: var(--ohp-muted);
  font-size: 12px;
  font-family: var(--ohp-font);
  font-weight: 500;
}

.ohp-trust-item svg { color: var(--ohp-lime); flex-shrink: 0; }

.ohp-trust-separator {
  color: rgba(74,222,128,0.2);
  font-size: 14px;
  flex-shrink: 0;
}

.ohp-trust-link {
  color: var(--ohp-lime);
  text-decoration: none;
  font-weight: 700;
}

/* ── Stats Grid ── */
.ohp-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
}

.ohp-stats-grid--dark { background: var(--ohp-dark); border-radius: 16px; overflow: hidden; }
.ohp-stats-grid--light { background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); overflow: hidden; }

.ohp-stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(74,222,128,0.1);
  transition: background 0.2s;
}

.ohp-stat-item:last-child { border-right: none; }
.ohp-stat-item:hover { background: rgba(74,222,128,0.05); }

.ohp-stats-grid--light .ohp-stat-item { border-right-color: #F3F4F6; }

.ohp-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--ohp-lime);
  line-height: 1;
  margin-bottom: 8px;
}

.ohp-stats-grid--light .ohp-stat-value { color: var(--ohp-green); }

.ohp-stat-label {
  font-family: var(--ohp-font);
  font-size: 13px;
  color: var(--ohp-muted);
  font-weight: 500;
}

.ohp-stats-grid--light .ohp-stat-label { color: #6B7280; }

/* ── Trust Badges ── */
.ohp-trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ohp-trust-badges--vertical { flex-direction: column; }

.ohp-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 16px 20px;
  flex: 1 1 200px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.ohp-badge:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.ohp-badge__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ohp-badge__icon--green { background: rgba(26,107,60,0.1); color: var(--ohp-green); }
.ohp-badge__icon--blue  { background: rgba(13,92,138,0.1); color: #0D5C8A; }
.ohp-badge__icon--gold  { background: rgba(212,168,67,0.1); color: var(--ohp-gold); }

.ohp-badge__text strong {
  display: block;
  font-family: var(--ohp-font);
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}

.ohp-badge__text span {
  font-family: var(--ohp-font);
  font-size: 12px;
  color: #6B7280;
}

@media (max-width: 600px) {
  .ohp-stats-grid { grid-template-columns: 1fr 1fr; }
  .ohp-stat-item { padding: 20px 12px; }
  .ohp-stat-value { font-size: 26px; }
  .ohp-badge { flex: 1 1 100%; }
}
