/* ——— TESTIMONIAL ——— */
.testimonial {
  padding: 5.5rem clamp(1.25rem, 4vw, 3.5rem) 0;
  background: var(--black);
}

.testimonial__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto 2.5rem;
}

.testimonial__head h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 30rem;
}

.testimonial__head p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 28rem;
}

.testimonial__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  text-decoration: underline;
  white-space: nowrap;
  transition: gap 0.25s ease;
}

.testimonial__more:hover {
  gap: 0.8rem;
}

.testimonial__video {
  position: relative;
  isolation: isolate;
  max-width: var(--max);
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 72% 28%, rgba(255, 59, 48, 0.22), transparent 60%),
    linear-gradient(160deg, #262020 0%, #100d0d 55%, #000 100%);
}

.testimonial__video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.testimonial__brand {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  opacity: 0.92;
}

.testimonial__brand .brand-logo {
  height: 38px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255, 255, 255, 0.16);
}

.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

.testimonial__client {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
}

.testimonial__client img {
  height: 64px;
  width: auto;
}

@media (max-width: 640px) {
  .testimonial__video {
    aspect-ratio: 3 / 4;
    border-radius: 1.75rem;
  }

  .testimonial__brand .brand-logo {
    height: 32px;
  }

  .play-btn {
    width: 68px;
    height: 68px;
  }

  .testimonial__client img {
    height: 48px;
  }
}
