.Reviews {
  padding: clamp(14px, 2vw, 20px);
  background: linear-gradient(180deg, #f4fbfd 0%, #ffffff 100%);
  color: #041924;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

.ReviewsContainer {
  border-radius: 20px;
  padding: 10px;
  background: radial-gradient(circle at top left, #e2fbff 0%, #ffffff 55%);
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.ReviewsHero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  text-align: center;
  padding: clamp(24px, 4vw, 48px);
}

.ReviewsHeroIntro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ReviewsEyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #008e9b;
  font-weight: 600;
  margin: 0;
}

.ReviewsHeroTitle {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.ReviewsHeroDescription {
  font-size: 1.1rem;
  color: rgba(4, 25, 36, 0.74);
  margin: 0;
}

.ReviewsHeroHighlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.ReviewsHeroHighlight {
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 142, 155, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(6, 32, 36, 0.08);
  font-weight: 600;
}

.ReviewsFormSection {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.ReviewsFormCard {
  background: #fff;
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(6, 32, 36, 0.08);
  box-shadow: 0 30px 60px rgba(4, 25, 36, 0.08);
}

.ReviewsFormHeader {
  margin-bottom: 1.5rem;
}

.ReviewsFormHeader h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.ReviewsFormHeader p {
  margin: 0;
  color: rgba(4, 25, 36, 0.64);
}

.ReviewsForm {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ReviewsLabel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(4, 25, 36, 0.9);
}

.ReviewsInput,
.ReviewsTextarea,
.ReviewsSelect {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(4, 25, 36, 0.12);
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: rgba(4, 25, 36, 0.02);
}

.ReviewsInput:focus,
.ReviewsTextarea:focus,
.ReviewsSelect:focus {
  border-color: #00b4c8;
  box-shadow: 0 0 0 3px rgba(0, 180, 200, 0.2);
  outline: none;
}

.ReviewsTextarea {
  min-height: 160px;
  resize: vertical;
}

.ReviewsFieldset {
  border: 1px solid rgba(4, 25, 36, 0.1);
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ReviewsFieldset legend {
  font-weight: 600;
  padding: 0 0.25rem;
}

.ReviewsRatingGroup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
  gap: 0.5rem;
}

.ReviewsRatingButton {
  border-radius: 18px;
  border: 1px solid rgba(4, 25, 36, 0.12);
  background: #fff;
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ReviewsRatingButtonActive {
  border-color: #008e9b;
  background: rgba(0, 142, 155, 0.1);
  color: #008e9b;
}

.ReviewsTargetGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
}

.ReviewsTargetButton {
  border-radius: 16px;
  border: 1px solid rgba(4, 25, 36, 0.12);
  padding: 0.85rem 1rem;
  font-weight: 600;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ReviewsTargetButtonActive {
  border-color: #041924;
  background: #041924;
  color: #fff;
}

.ReviewsConsent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(4, 25, 36, 0.7);
}

.ReviewsConsent input {
  margin-top: 0.25rem;
}

.ReviewsStatus {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(4, 25, 36, 0.12);
  margin: 0;
}

.ReviewsStatusSuccess {
  border-color: rgba(13, 154, 92, 0.4);
  background: rgba(13, 154, 92, 0.08);
  color: #0d9a5c;
}

.ReviewsStatusError {
  border-color: rgba(219, 82, 77, 0.4);
  background: rgba(219, 82, 77, 0.08);
  color: #d94136;
}

.ReviewsStatusMuted {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(4, 25, 36, 0.6);
}

.ReviewsButton {
  border: none;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #008e9b 0%, #00d3db 100%);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ReviewsButton:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ReviewsAside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ReviewsTipsCard,
.ReviewsWidgetCard {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(6, 32, 36, 0.08);
  box-shadow: 0 20px 50px rgba(4, 25, 36, 0.05);
}

.ReviewsTipsCard ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(4, 25, 36, 0.8);
}

.ReviewsGhostButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(4, 25, 36, 0.2);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
}

.ReviewsFeedHint {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(4, 25, 36, 0.6);
}

.ReviewsWidgetSection {
  margin-top: 1rem;
}

.ReviewsWidgetCardFull {
  background: #fff;
  border-radius: 32px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(6, 32, 36, 0.08);
  box-shadow: 0 30px 70px rgba(4, 25, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.PublishedReviewsList {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.PublishedReviewItem {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(4, 25, 36, 0.08);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.PublishedReviewHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.PublishedReviewRating {
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.1em;
  color: #f4b000;
}

.PublishedReviewTarget {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(4, 25, 36, 0.7);
}

.PublishedReviewText {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(4, 25, 36, 0.9);
  line-height: 1.4;
}

.ReviewsWidgetContainer {
  border-radius: 20px;
  border: 1px solid rgba(0, 142, 155, 0.1);
  padding: 0;
  overflow: hidden;
  min-height: 360px;
}

.ReviewsWidgetSkeleton {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 20px;
  border: 1px dashed rgba(10, 40, 70, 0.2);
  background: linear-gradient(120deg, #f8fafc 0%, #edf2f7 50%, #f8fafc 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
  color: #4a5568;
}

.ReviewsWidgetSpinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(0, 211, 219, 0.2);
  border-top-color: #00d3db;
  animation: spin 0.9s linear infinite;
}

@media (max-width: 1024px) {
  .ReviewsFormSection {
    grid-template-columns: 1fr;
  }
  .ReviewsAside {
    order: -1;
  }
}
@media (max-width: 640px) {
  .Reviews {
    padding-top: 1rem;
  }
  .ReviewsHeroHighlight,
  .ReviewsFormCard,
  .ReviewsTipsCard,
  .ReviewsWidgetCard,
  .ReviewsWidgetCardFull {
    border-radius: 20px;
  }
  .ReviewsConsent {
    flex-direction: column;
  }
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}