/* Testimonials section (matches live site) */

.fm-testimonial {
  padding: 104px 40px;
  background: #010118;
  font-family: 'F37 Moon', sans-serif;
}

.fm-testimonial-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: center;
}

.fm-testimonial-image {
  flex-shrink: 0;
  width: 35%;
}

.fm-testimonial-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 58px;
  object-fit: cover;
  box-shadow: 0 0 80px rgba(116, 68, 242, 0.45);
}

.fm-testimonial-content {
  flex: 1;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fm-testimonial-quote-icon {
  color: #7444f2;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 20px;
}

.fm-testimonial-quote {
  font-size: 32px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.fm-testimonial-attribution {
  text-align: center;
}

.fm-testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.fm-testimonial-role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 920px) {
  .fm-testimonial { padding: 64px 24px; }
  .fm-testimonial-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .fm-testimonial-image { width: 100%; max-width: 360px; }
  .fm-testimonial-content { padding-right: 0; }
  .fm-testimonial-quote { font-size: 24px; }
}

@media (max-width: 520px) {
  .fm-testimonial { padding: 48px 20px; }
  .fm-testimonial-quote { font-size: 20px; }
}
