.agt-clean {
  background: #fff;
  color: #1c1c1c;
  font-family: var(--agt-font-sans, Roboto, Arial, sans-serif);
}

.agt-clean-section {
  box-sizing: border-box;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.agt-clean-section_narrow {
  max-width: 960px;
  text-align: center;
}

.agt-clean-section_compact {
  padding-top: 58px;
}

.agt-clean-title {
  margin: 0 0 24px;
  font-size: var(--agt-h2, clamp(28px, 3.4vw, 40px));
  line-height: var(--agt-lh-title, 1.12);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.agt-clean-title_small {
  font-size: var(--agt-h3, clamp(26px, 3vw, 36px));
}

.agt-clean-lead {
  max-width: 930px;
  margin: 0 auto;
  font-size: var(--agt-h6, 22px);
  line-height: 1.45;
  font-weight: 500;
}

.agt-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.agt-clean-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  color: inherit !important;
  text-decoration: none !important;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .10);
  transition: transform .18s ease, box-shadow .18s ease;
}

.agt-clean-card:hover,
.agt-clean-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
}

.agt-clean-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eaeaea;
}

.agt-clean-card__body {
  padding: 24px;
}

.agt-clean-card__title {
  display: block;
  margin: 0 0 14px;
  font-size: var(--agt-h4, 26px);
  line-height: 1.15;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.agt-clean-card__text {
  display: block;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.agt-clean-team {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  text-align: center;
}

.agt-clean-person__photo {
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  background: #eaeaea;
}

.agt-clean-person__name {
  margin: 0 0 10px;
  font-size: var(--agt-h5, 24px);
  line-height: 1.15;
  font-weight: 900;
}

.agt-clean-person__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.agt-clean-reviews {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(51, 102, 153, .14), rgba(176, 56, 117, .12)),
    #f3f4f6;
  padding: 82px 0 88px;
}

.agt-clean-reviews__inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.agt-clean-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.agt-clean-review {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  box-sizing: border-box;
  padding: 38px 34px 32px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px 28px 28px 8px;
  box-shadow: 0 18px 42px rgba(24, 36, 54, .12);
}

.agt-clean-review::before {
  content: "“";
  position: absolute;
  top: 14px;
  left: 26px;
  color: rgba(51, 102, 153, .18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 92px;
  line-height: .7;
  pointer-events: none;
}

.agt-clean-review::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -14px;
  width: 30px;
  height: 30px;
  background: inherit;
  border-right: 1px solid rgba(255, 255, 255, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .72);
  transform: rotate(45deg);
  box-shadow: 12px 12px 26px rgba(24, 36, 54, .07);
}

.agt-clean-review__text {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.68;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.agt-clean-review__author {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  margin-top: auto;
  padding: 8px 13px;
  color: #1b1b1b;
  background: rgba(51, 102, 153, .10);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}

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

@media (max-width: 640px) {
  .agt-clean-section {
    width: min(100% - 28px, 520px);
    padding: 58px 0;
  }

  .agt-clean-title {
    font-size: 31px;
  }

  .agt-clean-lead {
    font-size: 18px;
  }

  .agt-clean-grid,
  .agt-clean-team,
  .agt-clean-reviews__grid {
    grid-template-columns: 1fr;
  }

  .agt-clean-card__body,
  .agt-clean-review {
    padding: 22px;
  }

  .agt-clean-reviews {
    padding: 62px 0 70px;
  }

  .agt-clean-review {
    border-radius: 22px 22px 22px 8px;
    padding: 34px 24px 28px;
  }

  .agt-clean-review::before {
    left: 18px;
    font-size: 78px;
  }
}
