/* Real client stories */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) clamp(23px, 5vw, 74px);
  background: #f3efe8;
}
.testimonials::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  right: -250px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,116,173,.18), transparent 68%);
  pointer-events: none;
}
.testimonials-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  align-items: end;
  gap: clamp(34px, 7vw, 110px);
  margin-bottom: clamp(44px, 6vw, 78px);
}
.testimonials-head h2 {
  max-width: 900px;
  margin: 20px 0 0;
  font: 500 clamp(52px, 6.4vw, 92px)/.9 var(--serif);
  letter-spacing: -.05em;
}
.testimonials-head h2 em { color: #c55088; font-weight: 500; }
.testimonials-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.testimonial-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .94fr .94fr;
  gap: 18px;
}
.testimonial-card {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(19,36,59,.12);
  background: rgba(255,255,255,.7);
  box-shadow: 0 22px 55px rgba(7,24,45,.07);
}
.testimonial-featured {
  background: linear-gradient(145deg, #123858, #07182d 72%);
  color: #fff;
  box-shadow: 0 30px 70px rgba(7,24,45,.2);
}
.testimonial-top { display: flex; align-items: center; gap: 13px; }
.testimonial-top > span:last-child { color: #9a7789; font-size: 8px; font-weight: 800; letter-spacing: .17em; }
.testimonial-featured .testimonial-top > span:last-child { color: rgba(255,255,255,.58); }
.testimonial-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font: 600 22px/1 var(--serif);
}
.testimonial-card h3 { margin: 42px 0 16px; font: 500 clamp(44px, 4vw, 62px)/.9 var(--serif); }
.testimonial-card > p { margin: 0; color: #697385; font-size: 13px; line-height: 1.75; }
.testimonial-featured > p { color: rgba(255,255,255,.72); }
.testimonial-result {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(19,36,59,.13);
}
.testimonial-featured .testimonial-result { border-color: rgba(255,255,255,.16); }
.testimonial-result small { color: #b25d8e; font-size: 7px; font-weight: 800; letter-spacing: .17em; }
.testimonial-featured .testimonial-result small { color: var(--pink); }
.testimonial-result strong { max-width: 330px; font-size: 13px; line-height: 1.55; }
.testimonial-card footer { margin-top: 22px; color: #8a8492; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.testimonial-featured footer { color: rgba(255,255,255,.44); }
.testimonial-privacy { margin: 24px 0 0; color: #8a8492; font-size: 9px; line-height: 1.6; }

@media (max-width: 980px) {
  .testimonials-head { grid-template-columns: 1fr; align-items: start; }
  .testimonials-head > p { max-width: 600px; }
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-featured { grid-column: 1 / -1; min-height: 390px; }
}

@media (max-width: 680px) {
  .testimonials { padding-left: 22px; padding-right: 22px; }
  .testimonials-head h2 { font-size: clamp(50px, 15vw, 66px); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-featured { grid-column: auto; }
  .testimonial-card { min-height: 410px; padding: 30px 25px; }
}