section.testimonials {
  padding: 6.5vw 4vw;
  background: #0A0A0A;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.testimonials__inner {
  max-width: 120ch;
  margin: 0 auto;
}

.testimonials__header {
  margin-bottom: 4vw;
  text-align: center;
}

.testimonials__title {
  font-size: 3.2vw;
  font-weight: 700;
  color: #70fa00;
  margin: 0;
}

.testimonials__subtitle {
  font-size: 1.4vw;
  color: #dfeee0;
  opacity: 0.9;
  margin-top: 0.6vw;
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
  height: auto;
}

.testimonial {
  display: none;
  animation: fade 0.6s ease-in-out;
}

.testimonial.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 0.12vw solid rgba(255, 255, 255, 0.03);
  padding: 2.2vw;
  border-radius: 1.2vw;
  box-shadow: 0 0.6vw 2.4vw rgba(0, 0, 0, 0.6);
  min-height: 14vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card__quote {
  font-size: 1.2vw;
  line-height: 1.45;
  color: #eafbe8;
  margin: 0 0 1.6vw 0;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 1.2vw;
}

.avatar {
  width: 4.6vw;
  height: 4.6vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2vw;
  color: #fff;
}

.meta__info {
  display: flex;
  flex-direction: column;
}

.meta__name {
  font-size: 1.04vw;
  font-weight: 600;
  color: #fff;
}

.meta__role {
  font-size: 0.92vw;
  color: rgba(255, 255, 255, 0.55);
}

.stars {
  margin-left: auto;
  display: flex;
  gap: 0.4vw;
  font-size: 2.4vw;
  color: #70fa00;
}

.testimonials__cta {
  margin-top: 5vw;
  text-align: center;
}

.testimonials__cta a {
  font-size: 1.4vw;
  color: #70fa00;
  text-decoration: none;
  border: 0.15vw solid #70fa00;
  padding: 1vw 2vw;
  border-radius: 1.5vw;
  transition: all 0.25s ease;
  display: inline-block;
  font-weight: 500;
}

.testimonials__cta a:hover {
  background: #70fa00;
  color: #0f0f0f;
}

@media (max-width: 800px) {
  section.testimonials {
    padding: 12vw 8vw;
  }
  .testimonials__title {
    font-size: 8vw;
  }
  .testimonials__subtitle {
    font-size: 4.5vw;
    margin-top: 5vw;
  }
  .card {
    padding: 5vw;
    border-radius: 2.5vw;
    min-height: 28vw;
    border: 0.3vw solid rgba(255, 255, 255, 0.03);
  }
  .card__quote {
    font-size: 4.5vw;
    line-height: 1.7;
    margin-bottom: 3vw;
  }
  .card__meta {
    gap: 2vw;
  }
  .avatar {
    width: 13vw;
    height: 13vw;
    font-size: 5vw;
  }
  .meta__name {
    font-size: 3.6vw;
  }
  .meta__role {
    font-size: 3.2vw;
  }
  .stars {
    font-size: 6.5vw;
    gap: 0.7vw;
  }
  .testimonials__cta {
    margin-top: 8vw;
  }
  .testimonials__cta a {
    font-size: 5vw;
    padding: 3.5vw 7vw;
    border-radius: 5vw;
    border: 0.3vw solid #70fa00;
    font-weight: 600;
  }
}

/*# sourceMappingURL=reviews.css.map */
