.testi-hero {
  background: var(--dark-1);
  padding: 120px 0 80px;
  text-align: center;
}

.testi-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.testi-hero .subtext {
  color: var(--tw-2);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  font-size: 18px;
  font-weight: 600;
  color: var(--tw-1);
}

.featured-testi {
  background: #fafafa;
  padding: 80px 0;
}

.featured-card {
  background: white;
  border: 1px var(--border-light) solid;
  border-radius: 16px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 32px;
  align-items: start;
}

.featured-avatar {
  flex-shrink: 0;
}

.avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  border: 4px solid white;
  box-shadow: var(--shadow-card);
}

.featured-content {
  flex: 1;
}

.featured-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  background: #FFF0F4;
  color: #993556;
  margin-bottom: 12px;
}

.featured-stars {
  color: #F59E0B;
  font-size: 18px;
  margin-bottom: 16px;
}

.featured-quote {
  font-size: 26px;
  font-style: italic;
  color: var(--tl-0);
  line-height: 1.5;
  margin-bottom: 16px;
}

.featured-metric {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
}

.testi-grid-section {
  background: var(--light-1);
  padding: 80px 0;
}

.plat-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.plat-filter {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  border: 1px var(--border-light) solid;
  background: transparent;
  color: var(--tl-2);
  cursor: pointer;
  transition: all 0.15s;
}

.plat-filter.active {
  background: var(--p1);
  color: white;
  border-color: var(--p1);
}

.plat-filter:hover {
  border-color: var(--p1);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: white;
  border: 1px var(--border-light) solid;
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.testi-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.card-avatar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.card-author {
  flex: 1;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--tl-0);
}

.author-handle {
  font-size: 12px;
  color: var(--tl-2);
}

.author-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
}

.card-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 12px;
}

.card-quote {
  font-size: 14px;
  color: var(--tl-1);
  line-height: 1.7;
  margin-bottom: 12px;
}

.card-metric {
  display: inline-block;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
}

.video-section {
  background: #fafafa;
  padding: 80px 0;
}

.video-section h2 {
  text-align: center;
  color: var(--tl-0);
  margin-bottom: 32px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.video-card {
  background: var(--dark-2);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}

.video-card:hover {
  transform: translateY(-4px);
}

.video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark-1);
  font-weight: 700;
}

.video-info {
  padding: 16px;
}

.video-creator {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.video-duration {
  font-size: 12px;
  color: var(--tw-2);
}

.media-section {
  background: #fafafa;
  padding: 48px 0;
  text-align: center;
}

.media-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tl-2);
  margin-bottom: 16px;
}

.media-logos {
  font-size: 14px;
  color: var(--tl-2);
}

.media-dot {
  margin: 0 8px;
  color: var(--border-light);
}

.testi-cta {
  background: var(--dark-1);
  padding: 80px 0;
  text-align: center;
}

.testi-cta h2 {
  color: white;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .featured-card {
    flex-direction: column;
    padding: 32px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}
