/* ── Testimonials Section ──────────────────────────────────────────────── */

.testimonials-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.9) 100%);
  border: 1px solid rgba(var(--landing-gradient-primary-rgb), 0.12);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sa-primary-600), var(--sa-secondary-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-l);
  border-color: rgba(var(--landing-gradient-primary-rgb), 0.25);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-quote-mark {
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--sa-primary-600);
  opacity: 0.25;
  user-select: none;
}

.testimonial-avatar {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(var(--landing-gradient-primary-rgb), 0.2);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
}

.testimonial-stars {
  color: #f59e0b;
  letter-spacing: 2px;
}

/* Dark mode */
[data-bs-theme="dark"] .testimonials-section {
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
}

[data-bs-theme="dark"] .testimonial-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(17, 24, 39, 0.9) 100%);
  border-color: rgba(var(--landing-gradient-primary-rgb), 0.2);
}

/* ── Quote section (legacy founder quote) ──────────────────────────────── */
/* Quote section */
.quote-section { background-color: #F9FAFB; border-radius: 1rem; padding: 3rem; }
.quote-section .alert { background-color: #FFFBEB; border-color: #FDE68A; }

/* Final CTA */

.final-cta-highlight {
  color: var(--sa-secondary-600);
  font-weight: 700;
}

#final-cta .additional-text {
  color: rgb(203 213 225);
  font-size: 1.25rem; /* text-xl */
  line-height: 1.75rem; /* leading-relaxed */
}

.text-hightlight {
  color: rgb(52 211 153);
}

.bg-blurry-light {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  border-width: 1px;
  border-radius: 1rem;
  padding: 2rem;
  width: 75%;
}

.bg-blurry-light input {
  width: 25%;
}

@media screen and (max-width: 768px) {
  .bg-blurry-light {
    width: 100%;
    padding: 1rem;
  }

  .bg-blurry-light input {
    width: 75%;
    padding: 0.5rem;
    font-size: 1rem; /* text-base */
    line-height: 1.5rem; /* leading-relaxed */
  }

  .bg-blurry-light p {
    font-size: 1rem; /* text-base */
    line-height: 1.5rem; /* leading-relaxed */
  }
}

.text-final-cta-highlight {
  color: rgb(203 213 225);
  font-size: 1.05rem; /* text-sm */
  line-height: 1.75rem; /* leading-relaxed */
}

/* Footer */
.site-footer { background-color: #111827; color: #E5E7EB; padding: 4rem 0; }
.site-footer a { color: #E5E7EB; }
.disclaimer-box { background-color: #1E293B; padding: 1rem; border-radius: 0.5rem; }
