/* =========================================================
   Section: Trusted by 1200+ businesses  (.testimonials)
   ========================================================= */
.testimonials {
  position: relative;
  background: var(--gradient-blue);
  padding: 100px 100px 140px;
  color: var(--color-white);
  overflow: hidden;
}

.testimonials__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.testimonials__title {
  margin: 0;
  max-width: 554px;
  font-family: var(--font-family-display);
  font-size: 40px;
  font-weight: var(--fw-bold);
  line-height: 1.1;
  text-align: center;
  color: var(--color-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  width: 100%;
  max-width: 1100px;
  justify-items: center;
}

.testimonials__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 500px;
  text-align: center;
}

.testimonials__stars {
  display: inline-flex;
  gap: 4px;
}
.testimonials__stars img {
  width: 28px;
  height: 28px;
  display: block;
}

.testimonials__quote {
  margin: 0;
  font-size: var(--fs-body-md);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--color-white);
}

.testimonials__author {
  margin: 0;
  font-size: var(--fs-body-md);
  font-weight: var(--fw-semibold);
  line-height: 1.55;
  color: var(--color-white);
}

/* Bottom curve divider */
.testimonials::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background: url('../../../assets/icons/divider-curve-down.svg') center / 100% 100% no-repeat;
  /* path is from css/sections/shared/ */
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials { padding: 80px 40px 120px; }
  .testimonials__grid { gap: 48px; }
}
@media (max-width: 768px) {
  .testimonials { padding: 64px 20px 100px; }
  .testimonials__title { font-size: 28px; }
  .testimonials__inner { gap: 48px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 56px; }
  .testimonials__item { gap: 24px; }
  .testimonials__stars img { width: 22px; height: 22px; }
}
