/* =========================================================
   Testimonials (large, video)
   ========================================================= */

.tmc-section {
  background: #0c0e1a;
  color: #fff;
  overflow: hidden;
}

.tmc-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.tmc-head .eyebrow {
  color: #8f9dff;
}

.tmc-head h2 {
  color: #fff;
}

.tmc-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.tmc-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.tmc-arrow:hover {
  background: rgba(255, 255, 255, 0.14);
}

.tmc-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.tmc-track-wrap {
  overflow: hidden;
  margin: 0;
  padding-inline: 0;
}

.tmc-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

.tmc-card {
  position: relative;
  width: 280px;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  background: #16182a;
  flex-shrink: 0;
}

.tmc-card-media {
  position: absolute;
  inset: 0;
  background: #111322;
}

.tmc-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}

.tmc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tmc-play svg {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-left: 2px;
}

.tmc-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  max-width: 132px;
  height: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 10px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.tmc-logo img {
  max-width: 100%;
  max-height: 22px;
  object-fit: contain;
}

.tmc-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 2, 20, 0.92) 0%, rgba(3, 2, 20, 0.15) 55%, transparent 75%);
}

.tmc-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  z-index: 1;
}

.tmc-stars {
  color: #ffb800;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.tmc-quote {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 12px;
}

.tmc-author-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.tmc-author-role {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 720px) {
  .tmc-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .tmc-card {
    width: 240px;
    height: 420px;
  }
}
