/* (c) 2026 Sentys Inc. All rights reserved. */






.testimonials {
  background: var(--gray-bg);
  padding: 48px 24px;
  text-align: center;
}

.testimonials-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 160px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 16px;
}

.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after { content: '\201D'; }

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #666;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--green);
  width: 10px;
  height: 10px;
}


.about {
  background: var(--white);
  padding: 80px 24px;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--black);
}

.about-stat {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 1.3em;
  font-weight: 700;
}


.pill-btn {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 48px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--spring), box-shadow 0.3s ease;
}

.pill-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(175, 209, 57, 0.4);
}


.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
