/* ==========================================================================
   Testimonials — World-class single-focus carousel
   ========================================================================== */

.testimonials--premium {
  --testimonial-stage-max: 44rem;
  --testimonial-autoplay-ms: 11000;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.testimonials--premium.section--alt {
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.98) 0%,
    rgba(241, 245, 249, 0.94) 42%,
    rgba(236, 253, 245, 0.22) 50%,
    rgba(241, 245, 249, 0.94) 58%,
    rgba(248, 250, 252, 0.98) 100%
  );
}

.testimonials--premium::before {
  display: none;
}

/* --------------------------------------------------------------------------
   Background — layered aurora, orbs, mesh, beams (GPU-friendly)
   -------------------------------------------------------------------------- */
.testimonials__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  contain: layout style paint;
  transform: translateZ(0);
}

/* Slow morphing aurora wash */
.testimonials__aurora {
  position: absolute;
  inset: -40%;
  opacity: 1;
  filter: blur(72px) saturate(150%);
  background-image:
    radial-gradient(ellipse 55% 45% at 12% 32%, rgba(16, 185, 129, 0.26) 0%, transparent 58%),
    radial-gradient(ellipse 50% 42% at 88% 22%, rgba(251, 191, 36, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 48% 50% at 52% 92%, rgba(14, 165, 233, 0.12) 0%, transparent 58%),
    radial-gradient(ellipse 40% 38% at 68% 48%, rgba(52, 211, 153, 0.14) 0%, transparent 52%);
  animation: testimonialAuroraFlow 28s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  will-change: transform;
}

@keyframes testimonialAuroraFlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate3d(2.5%, -2%, 0) scale(1.05) rotate(0.8deg);
  }
  66% {
    transform: translate3d(-2%, 2.5%, 0) scale(1.03) rotate(-0.6deg);
  }
}

/* Soft gradient orbs — no heavy blur filters */
.testimonials__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  opacity: 0.85;
}

.testimonials__orb--emerald {
  width: min(58vw, 620px);
  height: min(58vw, 620px);
  top: -22%;
  left: -16%;
  background: radial-gradient(
    circle at 42% 42%,
    rgba(16, 185, 129, 0.32) 0%,
    rgba(16, 185, 129, 0.1) 38%,
    transparent 72%
  );
  animation: testimonialOrbDrift1 36s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.testimonials__orb--gold {
  width: min(46vw, 480px);
  height: min(46vw, 480px);
  right: -12%;
  bottom: -8%;
  background: radial-gradient(
    circle at 58% 38%,
    rgba(251, 191, 36, 0.26) 0%,
    rgba(251, 191, 36, 0.08) 40%,
    transparent 74%
  );
  animation: testimonialOrbDrift2 42s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  animation-delay: -12s;
}

.testimonials__orb--teal {
  width: min(38vw, 400px);
  height: min(38vw, 400px);
  top: 38%;
  left: 42%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(45, 212, 191, 0.2) 0%,
    rgba(14, 165, 233, 0.06) 45%,
    transparent 70%
  );
  animation: testimonialOrbDrift3 38s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  animation-delay: -20s;
}

@keyframes testimonialOrbDrift1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  25% { transform: translate3d(5%, 4%, 0) scale(1.06); }
  50% { transform: translate3d(3%, 8%, 0) scale(1.03); }
  75% { transform: translate3d(-4%, 3%, 0) scale(1.07); }
}

@keyframes testimonialOrbDrift2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  30% { transform: translate3d(-6%, -4%, 0) scale(1.05); }
  60% { transform: translate3d(-3%, 5%, 0) scale(1.08); }
  85% { transform: translate3d(4%, 2%, 0) scale(1.02); }
}

@keyframes testimonialOrbDrift3 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  40% { transform: translate3d(-5%, 6%, 0) scale(1.04); }
  70% { transform: translate3d(6%, -3%, 0) scale(1.06); }
}

/* Perspective mesh + drifting dot field */
.testimonials__mesh {
  position: absolute;
  pointer-events: none;
}

.testimonials__mesh--grid {
  inset: -18%;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(5, 150, 105, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 150, 105, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: perspective(880px) rotateX(54deg) translateY(-6%) scale(1.14);
  transform-origin: center top;
  -webkit-mask-image: radial-gradient(ellipse 88% 62% at 50% 32%, #000 12%, transparent 76%);
  mask-image: radial-gradient(ellipse 88% 62% at 50% 32%, #000 12%, transparent 76%);
  animation:
    testimonialMeshFloat 48s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate,
    testimonialMeshSlide 80s linear infinite;
}

.testimonials__mesh--dots {
  inset: 0;
  opacity: 0.045;
  background-image: radial-gradient(rgba(5, 150, 105, 0.65) 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  animation: testimonialDotsDrift 55s linear infinite;
}

@keyframes testimonialMeshFloat {
  0% {
    transform: perspective(880px) rotateX(54deg) translateY(-6%) scale(1.14);
  }
  100% {
    transform: perspective(880px) rotateX(52deg) translateY(-4%) scale(1.16);
  }
}

@keyframes testimonialMeshSlide {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 52px 52px, 52px 52px; }
}

@keyframes testimonialDotsDrift {
  0% { background-position: 0 0; }
  100% { background-position: 20px 20px; }
}

/* Subtle rotating light beams */
.testimonials__beam {
  position: absolute;
  inset: -45%;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 140%;
  margin-left: -70%;
  margin-top: -70%;
  opacity: 0.07;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(16, 185, 129, 0.35) 28deg,
    transparent 56deg,
    rgba(251, 191, 36, 0.22) 120deg,
    transparent 160deg,
    rgba(14, 165, 233, 0.18) 220deg,
    transparent 280deg
  );
  animation: testimonialBeamRotate 100s linear infinite;
  will-change: transform;
}

@keyframes testimonialBeamRotate {
  to { transform: rotate(360deg); }
}

/* Film grain + edge vignette */
.testimonials__grain {
  position: absolute;
  inset: 0;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: multiply;
}

.testimonials__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 95% 75% at 50% 45%, transparent 35%, rgba(248, 250, 252, 0.55) 100%),
    linear-gradient(90deg, rgba(248, 250, 252, 0.65) 0%, transparent 12%, transparent 88%, rgba(248, 250, 252, 0.65) 100%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.4) 0%, transparent 18%, transparent 82%, rgba(248, 250, 252, 0.45) 100%);
  pointer-events: none;
}

.testimonials__container {
  position: relative;
  z-index: 1;
}

.testimonials--premium .section-header {
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

/* Stage */
.testimonials-swiper__stage {
  position: relative;
  max-width: var(--testimonial-stage-max);
  margin-inline: auto;
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(0.5rem, 2vw, 1rem);
  perspective: 1400px;
}

.testimonials-swiper__stage::before,
.testimonials-swiper__stage::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 18%;
  width: 72px;
  z-index: 4;
  pointer-events: none;
}

.testimonials-swiper__stage::before {
  left: -8px;
  background: linear-gradient(90deg, var(--color-bg-alt, #f8fafc) 15%, transparent);
}

.testimonials-swiper__stage::after {
  right: -8px;
  background: linear-gradient(270deg, var(--color-bg-alt, #f8fafc) 15%, transparent);
}

/* Swiper — one card, cinematic fade */
.testimonials-swiper--premium:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}

.testimonials-swiper--premium:not(.swiper-initialized) .swiper-slide:first-child .testimonial-card--premium {
  opacity: 1;
  transform: none;
}

.testimonials-swiper--premium:not(.swiper-initialized) .swiper-slide:first-child .testimonial-card__quote-mark,
.testimonials-swiper--premium:not(.swiper-initialized) .swiper-slide:first-child .testimonial-card__star,
.testimonials-swiper--premium:not(.swiper-initialized) .swiper-slide:first-child .testimonial-card__verified,
.testimonials-swiper--premium:not(.swiper-initialized) .swiper-slide:first-child .testimonial-card__quote,
.testimonials-swiper--premium:not(.swiper-initialized) .swiper-slide:first-child .testimonial-card__author {
  opacity: 1;
  transform: none;
}

.testimonials-swiper--premium {
  overflow: visible;
  padding: var(--space-6) var(--space-2);
}

.testimonials-swiper--premium .swiper-wrapper {
  align-items: center;
}

.testimonials-swiper--premium .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

/* Card shell */
.testimonials--premium .testimonial-card--premium {
  --shine-x: 50%;
  --shine-y: 42%;
  --glow: 0;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: var(--testimonial-stage-max);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: calc(var(--radius-2xl) + 2px);
  background: transparent;
  box-shadow: none;
  transform: translate3d(0, 18px, 0) scale(0.96);
  opacity: 0;
  transition: none;
}

.testimonials-swiper--premium .swiper-slide-active .testimonial-card--premium {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

.testimonials-swiper--premium .swiper-slide-active .testimonial-card--premium.is-animated {
  animation: testimonialCardIn 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes testimonialCardIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.94);
    filter: blur(6px);
  }
  55% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.testimonial-card__aura {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(16, 185, 129, 0.14) 0%,
    rgba(251, 191, 36, 0.06) 42%,
    transparent 68%
  );
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.testimonials-swiper--premium .swiper-slide-active .testimonial-card__aura {
  opacity: 1;
  animation: testimonialAuraPulse 4s ease-in-out infinite alternate;
}

@keyframes testimonialAuraPulse {
  0% { transform: scale(0.98); opacity: 0.75; }
  100% { transform: scale(1.04); opacity: 1; }
}

.testimonial-card__ring {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
  animation: testimonialRingRotate 10s linear infinite;
}

.testimonial-card__ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    rgba(5, 150, 105, 0.9),
    rgba(251, 191, 36, 0.7),
    rgba(14, 165, 233, 0.5),
    rgba(5, 150, 105, 0.9)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.testimonials-swiper--premium .swiper-slide-active .testimonial-card__ring {
  opacity: 0.92;
}

@keyframes testimonialRingRotate {
  to { transform: rotate(360deg); }
}

.testimonial-card__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-2xl);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.94) 48%,
    rgba(236, 253, 245, 0.38) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 24px 64px rgba(5, 150, 105, 0.12),
    0 48px 96px rgba(15, 23, 42, 0.06);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
  backdrop-filter: blur(24px) saturate(1.15);
  overflow: hidden;
}

/* Light sweep across card */
.testimonial-card__sweep {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}

.testimonial-card__sweep::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 45%;
  height: 180%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 42%,
    rgba(16, 185, 129, 0.12) 50%,
    transparent 58%
  );
  transform: skewX(-12deg) translateX(-120%);
  opacity: 0;
}

.testimonials-swiper--premium .swiper-slide-active .testimonial-card__sweep::after {
  animation: testimonialSweep 1.65s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@keyframes testimonialSweep {
  0% {
    transform: skewX(-12deg) translateX(-120%);
    opacity: 0;
  }
  12% { opacity: 1; }
  100% {
    transform: skewX(-12deg) translateX(320%);
    opacity: 0;
  }
}

.testimonial-card__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: calc(0.35 + var(--glow) * 0.45);
  background: radial-gradient(
    280px circle at var(--shine-x) var(--shine-y),
    rgba(255, 255, 255, 0.65) 0%,
    rgba(16, 185, 129, 0.1) 38%,
    transparent 70%
  );
  transition: opacity 0.35s ease;
}

/* Head */
.testimonial-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3) var(--space-4);
  margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
}

.testimonial-card__quote-mark {
  flex-shrink: 0;
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  line-height: 0.85;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(145deg, rgba(5, 150, 105, 0.35), rgba(251, 191, 36, 0.28));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(8px);
}

.testimonials-swiper--premium .swiper-slide-active .testimonial-card__quote-mark {
  animation: testimonialReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.testimonials--premium .testimonial-card__stars {
  display: inline-flex;
  gap: 3px;
  margin: 0;
  font-size: 0;
}

.testimonial-card__star {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(6px) scale(0.85);
  filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.35));
}

.testimonials-swiper--premium .swiper-slide-active .testimonial-card__star:nth-child(1) { animation: testimonialStarIn 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) 0.22s forwards; }
.testimonials-swiper--premium .swiper-slide-active .testimonial-card__star:nth-child(2) { animation: testimonialStarIn 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) 0.3s forwards; }
.testimonials-swiper--premium .swiper-slide-active .testimonial-card__star:nth-child(3) { animation: testimonialStarIn 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) 0.38s forwards; }
.testimonials-swiper--premium .swiper-slide-active .testimonial-card__star:nth-child(4) { animation: testimonialStarIn 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) 0.46s forwards; }
.testimonials-swiper--premium .swiper-slide-active .testimonial-card__star:nth-child(5) { animation: testimonialStarIn 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) 0.54s forwards; }

@keyframes testimonialStarIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.testimonial-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 6px 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  background: rgba(236, 253, 245, 0.9);
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: var(--radius-full);
  opacity: 0;
  transform: translateY(6px);
}

.testimonials-swiper--premium .swiper-slide-active .testimonial-card__verified {
  animation: testimonialReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

/* Quote */
.testimonials--premium .testimonial-card__quote {
  position: relative;
  z-index: 3;
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
  font-style: normal;
  opacity: 0;
  transform: translateY(14px);
}

.testimonials-swiper--premium .swiper-slide-active .testimonial-card__quote {
  animation: testimonialReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.testimonials--premium .testimonial-card__quote::before {
  content: "\201C";
  margin-right: 0.12em;
  color: rgba(5, 150, 105, 0.45);
  font-weight: 700;
}

.testimonials--premium .testimonial-card__quote::after {
  content: "\201D";
  margin-left: 0.08em;
  color: rgba(5, 150, 105, 0.45);
  font-weight: 700;
}

@keyframes testimonialReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Author */
.testimonials--premium .testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin: 0;
  padding-top: clamp(1rem, 2.5vw, 1.25rem);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  opacity: 0;
  transform: translateY(12px);
}

.testimonials-swiper--premium .swiper-slide-active .testimonial-card__author {
  animation: testimonialReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards;
}

.testimonial-card__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.testimonial-card__avatar-wrap::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #059669, #fbbf24, #0ea5e9, #059669);
  animation: testimonialRingRotate 6s linear infinite;
  opacity: 0.85;
}

.testimonials--premium .testimonial-card__avatar {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.testimonials--premium .testimonial-card__name {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  font-style: normal;
}

.testimonials--premium .testimonial-card__location {
  margin: 4px 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.testimonials--premium .testimonial-card--premium:hover {
  --glow: 1;
}

/* Chrome — progress + counter */
.testimonials-swiper__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  max-width: var(--testimonial-stage-max);
  margin: clamp(1.25rem, 3vw, 1.75rem) auto 0;
  padding: 0 var(--space-2);
}

.testimonials-swiper__progress {
  flex: 1;
  height: 3px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.testimonials-swiper__progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #059669, #10b981, #fbbf24);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}

.testimonials-swiper__counter {
  flex-shrink: 0;
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.testimonials-swiper__counter-current {
  color: var(--color-primary);
  font-size: 1rem;
}

.testimonials-swiper__counter-sep {
  margin: 0 0.2em;
  opacity: 0.45;
}

.testimonials-swiper__nav,
.testimonials-swiper__pagination {
  display: none !important;
}

@media (min-width: 768px) {
  .testimonials--premium {
    --testimonial-stage-max: 40rem;
  }
}

@media (min-width: 1024px) {
  .testimonials--premium {
    --testimonial-stage-max: 44rem;
  }

  .testimonials-swiper__stage::before,
  .testimonials-swiper__stage::after {
    width: 96px;
  }
}

@media (max-width: 768px) {
  .testimonials__aurora {
    filter: blur(52px) saturate(135%);
    inset: -30%;
  }

  .testimonials__beam {
    opacity: 0.045;
  }

  .testimonials__orb--teal {
    opacity: 0.55;
  }
}

@media (max-width: 639px) {
  .testimonial-card__verified {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .testimonial-card__head {
    justify-content: center;
    text-align: center;
  }

  .testimonials--premium .testimonial-card__author {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__aurora,
  .testimonials__orb,
  .testimonials__mesh--grid,
  .testimonials__mesh--dots,
  .testimonials__beam {
    animation: none;
  }

  .testimonials__mesh--grid {
    transform: perspective(880px) rotateX(54deg) translateY(-6%) scale(1.14);
  }

  .testimonial-card__ring,
  .testimonial-card__avatar-wrap::before {
    animation: none;
  }

  .testimonials-swiper--premium .swiper-slide-active .testimonial-card--premium,
  .testimonials-swiper--premium .swiper-slide-active .testimonial-card__sweep::after,
  .testimonials-swiper--premium .swiper-slide-active .testimonial-card__quote-mark,
  .testimonials-swiper--premium .swiper-slide-active .testimonial-card__star,
  .testimonials-swiper--premium .swiper-slide-active .testimonial-card__verified,
  .testimonials-swiper--premium .swiper-slide-active .testimonial-card__quote,
  .testimonials-swiper--premium .swiper-slide-active .testimonial-card__author {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .testimonials--premium .testimonial-card--premium {
    opacity: 1;
    transform: none;
  }

  .testimonials-swiper--premium .swiper-slide:not(.swiper-slide-active) {
    visibility: hidden;
    position: absolute;
    pointer-events: none;
  }
}
