/* Google Reviews section – matches dark glass style */
.reviews-section {
  padding: var(--section-py) 32px;
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-score-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.reviews-score-meta {
  font-size: 14px;
  color: var(--text-secondary);
}

.reviews-score-meta strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  color: var(--star);
  letter-spacing: 2px;
  font-size: 14px;
}

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.review-source {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.reviews-cta {
  margin-top: 36px;
  text-align: center;
}

.reviews-cta a.btn-reviews-google {
  color: #07090f;
  text-decoration: none;
}
.reviews-cta a.btn-ghost {
  color: var(--text-primary);
  text-decoration: none;
}

.reviews-placeholder {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  border: 1px dashed var(--glass-border);
  border-radius: var(--r-md);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-section { padding: var(--section-py) 20px; }
}

/* High contrast Google reviews button */
.btn-reviews-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #07090f;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.btn-reviews-google:hover {
  background: #e8eef4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
  color: #07090f;
}
