.reviews-page { max-width: 1100px; margin: 32px auto; padding: 32px 24px 64px; }
.reviews-intro { text-align: center; max-width: 720px; margin: 0 auto 36px; color: #59677A; font-size: 17px; line-height: 1.6; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 22px; }
.review-card {
  background: white; border-radius: 22px; padding: 24px 22px 22px;
  box-shadow: 0 12px 36px rgba(6,27,54,.10); border: 1px solid #ECF1F7;
  display: flex; flex-direction: column;
}
.review-stars { color: #F5B942; font-size: 18px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { color: #2c3e50; line-height: 1.65; font-size: 15px; flex: 1; margin: 0 0 14px; }
.review-text::before { content: '\201C'; color: #F5B942; font-size: 48px; line-height: 0; vertical-align: -16px; margin-right: 4px; font-family: Georgia, serif; }
.review-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid #F0F4F8; }
.review-name { font-weight: 800; color: #061B36; font-size: 15px; }
.review-name small { display: block; color: #59677A; font-weight: 500; font-size: 12px; margin-top: 2px; }
.review-source { background: #F7FAFC; color: #59677A; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.review-house { font-size: 11px; color: #0057B7; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.reviews-footer-note { text-align: center; color: #59677A; margin-top: 36px; padding: 18px; background: #F7FAFC; border-radius: 16px; font-size: 14px; }

.review-form-section {
  max-width: 720px; margin: 60px auto 0; background: white;
  border-radius: 22px; padding: 32px; box-shadow: 0 12px 36px rgba(6,27,54,.10);
  border: 1px solid #ECF1F7;
}
.review-form-section h2 { color: #061B36; font-family: Georgia, serif; margin: 0 0 8px; }
.review-form-section .intro { color: #59677A; margin: 0 0 22px; }
.review-form .field { margin-bottom: 14px; }
.review-form label { display: block; font-weight: 800; color: #061B36; font-size: 14px; margin-bottom: 6px; }
.review-form input, .review-form select, .review-form textarea {
  width: 100%; padding: 11px 13px; border: 1px solid #D8E2EF; border-radius: 12px;
  font-size: 15px; font-family: inherit;
}
.review-form textarea { resize: vertical; min-height: 110px; }
.review-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review-form .star-input { display: inline-flex; gap: 4px; font-size: 26px; cursor: pointer; user-select: none; }
.review-form .star-input input { display: none; }
.review-form .star-input label { color: #D8E2EF; transition: color .15s; margin: 0; }
.review-form .star-input label:hover, .review-form .star-input label:hover ~ label { color: #F5B942 !important; }
.review-form .star-input input:checked ~ label { color: #F5B942; }
.review-form .star-input { direction: rtl; justify-content: flex-end; }
.review-form button { background: #061B36; color: white; border: 0; padding: 13px 22px; border-radius: 12px; font-weight: 900; cursor: pointer; font-size: 15px; }
.review-form button:hover { background: #0057B7; }
.review-alert { padding: 12px 16px; border-radius: 12px; margin-bottom: 16px; font-weight: 700; }
.review-alert.ok { background: #D1FAE5; color: #065F46; }
.review-alert.bad { background: #FEE2E2; color: #991B1B; }
@media (max-width: 600px) {
  .reviews-page { padding: 18px 14px 40px; margin: 16px auto; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card, .review-form-section { padding: 20px 18px; }
  .review-form .row2 { grid-template-columns: 1fr; }
}
