/* =============================================================================
   TESTIMONIALS.CSS — Customer Testimonial Cards
   ============================================================================= */

.testimonials {
  padding: 100px 0;
  background: #0D0818;
  position: relative;
  overflow: hidden;
  /* pull up so it sits flush behind the pricing fade */
  margin-top: -1px;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 211, 172, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(124, 58, 237, 0.30);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.18);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--purple);
  opacity: 0.3;
  position: absolute;
  top: -16px;
  left: -4px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.testimonial-name { font-size: 0.88rem; font-weight: 700; color: #fff; }
.testimonial-role { font-size: 0.78rem; color: rgba(255, 255, 255, 0.45); }

/* ── Dark section text overrides ── */
.testimonials .section-title    { color: #fff; }
.testimonials .section-subtitle { color: rgba(255, 255, 255, 0.65); }
.testimonials .section-label    { background: rgba(124, 58, 237, 0.20); border: 1px solid rgba(124, 58, 237, 0.35); }
