/* Results / testimonials carousel — same pattern as insurance */
.results-section {
  padding: 5rem 1rem;
  background: #fff;
}

@media (min-width: 768px) {
  .results-section {
    padding: 6.25rem 1.5rem;
  }
}

@media (min-width: 1280px) {
  .results-section {
    padding: 7.5rem 2rem;
  }
}

.results-section .results-inner {
  max-width: 80rem;
  margin-inline: auto;
}

.results-section .section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #33b8b3;
  margin: 0 0 0.75rem;
}

.results-section .section-title {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 350;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1c1c22;
  margin: 0 0 1.25rem;
}

.results-section .section-lead {
  font-family: 'DM Sans', 'Geist', Inter, system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #6b6b6b;
  max-width: 42rem;
  margin: 0 auto;
}

.results-carousel {
  position: relative;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .results-carousel {
    margin-top: 3.75rem;
  }
}

.results-carousel-stage {
  position: relative;
}

.results-carousel-viewport {
  overflow: hidden;
  margin: 0 3.25rem;
}

@media (min-width: 768px) {
  .results-carousel-viewport {
    margin: 0 4rem;
  }
}

.results-carousel-track {
  display: flex;
  gap: 0.875rem;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

@media (min-width: 768px) {
  .results-carousel-track {
    gap: 1.125rem;
  }
}

.testimonial-card {
  flex: 0 0 100%;
  height: 14rem;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.4rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(28, 28, 34, 0.08);
  box-shadow: 0 12px 40px -16px rgba(28, 28, 34, 0.12);
  text-align: left;
}

@media (min-width: 640px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 2.25rem) / 3);
    height: 15.5rem;
    padding: 1.5rem 1.6rem;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 2.25rem) / 3);
    height: 16.5rem;
    padding: 1.75rem 1.85rem;
    border-radius: 2rem;
  }
}

.testimonial-card-body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.testimonial-card-body p {
  margin: 0;
  font-family: 'DM Sans', 'Geist', Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #6b6b6b;
}

.testimonial-card-body p:not(.testimonial-card-quote) {
  overflow: hidden;
  word-break: break-word;
}

.testimonial-card-quote {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif !important;
  font-size: 1.0625rem !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em;
  color: #1c1c22 !important;
  margin-bottom: 0.55rem !important;
}

.testimonial-card-author {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(28, 28, 34, 0.08);
  font-family: 'DM Sans', 'Geist', Inter, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c1c22;
}

.testimonial-card-role {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #6b6b6b;
}

.tms-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.75rem;
  margin-top: 1.75rem;
  color: #1c1c22;
}

.tms-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.8;
}

.tms-highlight svg {
  flex-shrink: 0;
  color: #2a9e9a;
}

#tms-carousel {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  #tms-carousel {
    margin-top: 2.5rem;
  }
}

.results-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(28, 28, 34, 0.1);
  background: #fff;
  color: #1c1c22;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.results-carousel-btn:hover {
  background: #f4fafa;
  border-color: rgba(51, 184, 179, 0.45);
  color: #2a9e9a;
}

.results-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.results-carousel-btn--prev {
  left: 0;
}

.results-carousel-btn--next {
  right: 0;
}

.results-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.results-carousel-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(28, 28, 34, 0.15);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.results-carousel-dot.is-active {
  background: #33b8b3;
  transform: scale(1.15);
}

.results-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.results-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #33b8b3;
  text-decoration: none;
  transition: color 0.15s;
}

.results-cta a:hover {
  color: #2a9e9a;
}

@media (prefers-reduced-motion: reduce) {
  .results-carousel-track {
    transition: none;
  }
}
