/* ===== Client Reviews page ===== */

.rev-hero { text-align: center; }
.rev-hero .section-head { max-width: 720px; margin-left: auto; margin-right: auto; }

.rev-badge {
  display: inline-flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px; padding: 14px 28px; margin-top: 8px;
}
.rev-badge__score { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: #fff; line-height: 1; }
.rev-badge__stars { display: flex; gap: 2px; color: #ffb347; }
.rev-badge__stars svg { width: 20px; height: 20px; }
.rev-badge__meta { text-align: left; color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.3; }
.rev-badge__meta strong { display: block; color: #fff; font-family: var(--font-display); font-weight: 700; }
.rev-badge__divider { width: 1px; height: 40px; background: rgba(255,255,255,0.18); }
.rev-google { display: inline-flex; align-items: center; gap: 6px; }
.rev-google svg { width: 20px; height: 20px; }

.rev-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.rev-grid {
  column-count: 3; column-gap: 24px;
}
.rev-card {
  break-inside: avoid; display: inline-block; width: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 24px 22px; margin-bottom: 24px; position: relative; overflow: hidden;
  box-shadow: 0 16px 34px -28px rgba(55,59,64,0.4);
  transition: transform 0.3s cubic-bezier(.34,1.2,.64,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.rev-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--cta), var(--cta-deep));
}
.rev-card:hover { transform: translateY(-6px); box-shadow: 0 26px 48px -26px rgba(221,98,38,0.35); border-color: var(--cta-tint); }
.rev-card__quote { position: absolute; top: 10px; right: 16px; font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; color: var(--bg); line-height: 1; z-index: 0; user-select: none; }
.rev-card__top { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; margin-bottom: 12px; }
.rev-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.rev-card__avatar--a { background: linear-gradient(155deg, var(--cta) 0%, var(--cta-deep) 100%); }
.rev-card__avatar--b { background: linear-gradient(155deg, var(--ink) 0%, var(--ink-2) 100%); }
.rev-card__avatar--c { background: linear-gradient(155deg, var(--accent) 0%, #52565e 100%); }
.rev-card__id { min-width: 0; }
.rev-card__name { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 0.98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; gap: 5px; }
.rev-card__name svg { flex: none; width: 15px; height: 15px; color: #4285F4; }
.rev-card__date { color: var(--accent); font-size: 0.82rem; }
.rev-card__stars { display: flex; gap: 2px; color: var(--cta); margin-bottom: 10px; position: relative; z-index: 1; }
.rev-card__stars svg { width: 15px; height: 15px; }
.rev-card__text { color: var(--ink-2); font-size: 0.94rem; line-height: 1.55; position: relative; z-index: 1; white-space: pre-line; }

@media (max-width: 1080px) { .rev-grid { column-count: 2; } }
@media (max-width: 700px) { .rev-grid { column-count: 1; } }
