input[name="phone"] {
  padding-left: 90px !important;
}

.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup_title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.popup-content {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.breadcrumbs {
  padding: 1rem 0 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.35rem 0.5rem;
  font-size: 14px;
  padding-left: 20px;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.5rem;
  opacity: 0.6;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
  opacity: 0.8;
}

.legal-section {
  text-align: left;
}

.legal-section h2,
.legal-section h3 {
  margin-top: 30px;
  font-size: 24px;
}

.legal-section h4 {
  font-size: 18px;
}

.legal-section table {
  width: 100%;
}

.legal-section table,
.legal-section th,
.legal-section td {
  border: 1px solid;
  border-collapse: collapse;
}

.legal-section th,
.legal-section td {
  padding: 10px;
}

.legal-section table td {
  vertical-align: top;
}

.nested-list {
  counter-reset: item;
}

.nested-list li {
  display: block;
}

.nested-list li:before {
  content: counters(item, '.') '. ';
  counter-increment: item;
}

.reviews {
  background-image: linear-gradient(to right, #726cf9 27%, #c57cff);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.reviews-title {
  color: #fff;
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 140%;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reviews-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 0;
}

.reviews-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.reviews-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.reviews-user-meta {
  min-width: 0;
}

.reviews-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviews-name {
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 6px;
}

.reviews-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.reviews-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #3ddc67;
  color: #fff;
  border-radius: 3px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.reviews-stats {
  display: flex;
  align-items: stretch;
  background-color: #f5ead2;
  border-radius: 10px;
  padding: 8px 10px;
  flex-shrink: 0;
}

.reviews-stats-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  min-width: 58px;
}

.reviews-stats-divider {
  width: 1px;
  background-color: rgba(0, 0, 0, 0.12);
  align-self: stretch;
}

.reviews-stats-label {
  color: #b07a3a;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2px;
}

.reviews-stats-value {
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.reviews-text {
  color: #1c1c1c;
  font-size: 16px;
  line-height: 140%;
  margin: 0;
  overflow-wrap: anywhere;
}

@media screen and (max-width: 1130px) {
  .reviews-list {
    gap: 12px;
  }

  .reviews-card {
    padding: 20px 14px;
    gap: 16px;
  }

  .reviews-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .reviews-avatar {
    width: 42px;
    height: 42px;
  }

  .reviews-name {
    font-size: 16px;
  }

  .reviews-stats-col {
    min-width: 0;
    padding: 0 6px;
  }

  .reviews-text {
    font-size: 15px;
  }
}

@media screen and (max-width: 991px) {
  .reviews-list {
    grid-template-columns: 1fr;
  }

  .reviews-title {
    font-size: 32px;
  }

  .reviews-card {
    padding: 28px 24px;
  }

  .reviews-card-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .reviews-title {
    font-size: 28px;
  }

  .reviews-card {
    padding: 24px 20px;
  }
}

@media screen and (max-width: 479px) {
  .reviews {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .reviews-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .reviews-card-header {
    flex-wrap: wrap;
  }

  .reviews-stats {
    margin-left: auto;
  }
}
