/* ── OHP Testimonials ─────────────────────────────────────────────────────── */
.ohp-testimonials--dark  { background: #0A1A0F; padding: 60px 24px; }
.ohp-testimonials--light { background: #F7F4EF; padding: 60px 24px; }

.ohp-testimonials__inner {
  display: grid;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.ohp-testimonial-card {
  border-radius: 16px;
  padding: 26px 22px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ohp-testimonials--dark .ohp-testimonial-card {
  background: #1C2B22;
  border: 1px solid rgba(46,174,99,0.15);
}

.ohp-testimonials--light .ohp-testimonial-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.ohp-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.ohp-testimonial-card__accent {
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, #1A6B3C, #4ADE80);
  border-radius: 0 0 2px 2px;
}

.ohp-stars { display: flex; gap: 3px; margin-bottom: 14px; }

.ohp-star { fill: #E5E7EB; }
.ohp-star--filled { fill: #D4A843; }

.ohp-testimonial-card__quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 14px;
  quotes: "\201C" "\201D";
}

.ohp-testimonials--dark .ohp-testimonial-card__quote { color: #D1D5DB; }
.ohp-testimonials--light .ohp-testimonial-card__quote { color: #374151; }

.ohp-testimonial-card__quote::before { content: open-quote; font-size: 20px; }
.ohp-testimonial-card__quote::after  { content: close-quote; font-size: 20px; }

.ohp-testimonial-card__transaction {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,107,60,0.12);
  border: 1px solid rgba(26,107,60,0.25);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  color: #4ADE80;
  margin-bottom: 16px;
}

.ohp-testimonial-card__client {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ohp-testimonials--light .ohp-testimonial-card__client { border-top-color: #E5E7EB; }

.ohp-testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1A6B3C, #4ADE80);
  display: flex; align-items: center; justify-content: center;
}

.ohp-testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.ohp-testimonial-card__initials {
  color: #0A1A0F;
  font-weight: 800;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
}

.ohp-testimonial-card__client-info strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.ohp-testimonial-card__client-info span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
}

.ohp-testimonials--dark .ohp-testimonial-card__client-info strong { color: #fff; }
.ohp-testimonials--dark .ohp-testimonial-card__client-info span   { color: #8A9E8F; }
.ohp-testimonials--light .ohp-testimonial-card__client-info strong { color: #111; }
.ohp-testimonials--light .ohp-testimonial-card__client-info span   { color: #6B7280; }

/* Review Summary */
.ohp-review-summary {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ohp-review-summary__score {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: #1A6B3C;
  line-height: 1;
}

.ohp-review-summary__stars { display: flex; gap: 4px; }
.ohp-review-summary__count { font-family: 'DM Sans', sans-serif; font-size: 13px; color: #6B7280; }

.ohp-review-summary__cta {
  color: #1A6B3C;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

@media (max-width: 600px) {
  .ohp-testimonials__inner { grid-template-columns: 1fr; }
}
