/* ── Rating Summary in Hero ─────────────────────────────────── */
.rating-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.rating-big { font-family: 'Poppins', sans-serif; font-size: 56px; font-weight: 500; color: white; line-height: 1; }
.rating-stars { display: flex; gap: 4px; margin-bottom: 6px; }
.rating-label { font-size: 13px; color: rgba(255,255,255,0.65); }
.rating-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.2); }
.review-cta-link { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; color: white; text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.25s; }
.review-cta-link:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }

/* ── Reviews Grid ───────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: white; border: 1px solid var(--silver-light); border-radius: 12px; padding: 30px 28px; display: flex; flex-direction: column; transition: all 0.3s ease; }
.review-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 24px 50px -20px rgba(0,38,74,0.15); }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars svg { width: 15px; height: 15px; }
.review-body { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0 0 24px; flex-grow: 1; }
.review-footer { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--silver-light); }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy-soft)); color: white; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; flex-shrink: 0; }
.review-name { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.2; }
.review-tag { font-size: 11px; color: var(--silver); margin-top: 2px; }

/* Leave Review CTA */
.reviews-cta-wrap { text-align: center; margin-top: 56px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-divider { display: none; }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { padding: 22px 20px; }
  .rating-big { font-size: 44px; }
}
