/* =========================================================
   BLOCK 08 — REVIEWS / SOCIAL PROOF
   ========================================================= */

.reviews {
  width: 100%;
  padding: 42px 0 42px;
  background: #f8fafc;
  border-top: 1px solid #e8edf2;
}

.reviews__inner {
  width: min(calc(100% - 72px), var(--content-max-width));
  margin: 0 auto;
}

.reviews__header {
  margin-bottom: 24px;
  text-align: center;
}

.reviews__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #e3131b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reviews__title {
  margin: 0;
  color: #0a1b2f;
  font-size: clamp(29px, 2.2vw, 40px);
  font-weight: 950;
  line-height: 1.08;
  text-transform: uppercase;
}

.reviews__intro {
  margin: 8px 0 0;
  color: #6f7b88;
  font-size: 12px;
  font-weight: 700;
}

.reviews__grid {
  display: grid;
  grid-template-columns: .78fr repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reviews__score-card,
.reviews__card {
  min-height: 238px;
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(3, 23, 43, .05);
}

.reviews__score-card {
  position: relative;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.reviews__demo {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #e3131b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reviews__score-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.reviews__score-row strong {
  color: #0a1b2f;
  font-size: 62px;
  font-weight: 950;
  line-height: 1;
}

.reviews__big-star {
  color: #e3131b;
  font-size: 44px;
  line-height: 1;
}

.reviews__score-label {
  margin-top: 7px;
  color: #536273;
  font-size: 11px;
  font-weight: 800;
}

.reviews__stars {
  color: #f5a800;
  font-size: 19px;
  letter-spacing: 2px;
}

.reviews__score-card .reviews__stars {
  margin-top: 13px;
}

.reviews__platform {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.reviews__platform-google {
  display: inline-flex;
  align-items: center;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.reviews__platform-label {
  color: #697787;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .01em;
}

.g-blue { color: #4285f4; }
.g-red { color: #ea4335; }
.g-yellow { color: #fbbc05; }
.g-green { color: #34a853; }

.reviews__card {
  padding: 19px 18px 18px;
  display: flex;
  flex-direction: column;
}

.reviews__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews__g {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f4f6f8;
  overflow: hidden;
}

.reviews__g span {
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
  background: conic-gradient(#4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reviews__quote {
  flex: 1;
  margin: 15px 0 18px;
  color: #253446;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.62;
}

.reviews__person {
  display: flex;
  align-items: center;
  gap: 11px;
}

.reviews__avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a1b2f;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.reviews__person strong,
.reviews__person span {
  display: block;
}

.reviews__person strong {
  color: #0a1b2f;
  font-size: 13px;
  font-weight: 900;
}

.reviews__person span {
  margin-top: 2px;
  color: #7f8a96;
  font-size: 10px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .reviews__inner { width: min(calc(100% - 24px), var(--content-max-width)); }
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__score-card, .reviews__card { min-height: 0; }
}
