.hdtest-wrapper {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}
.hdtest-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 60px;
}
.hdtest-header {
  text-align: center;
  margin-bottom: 60px;
}
.hdtest-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}
.hdtest-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin: 0;
}
.hdtest-slider {
  position: relative;
  padding: 0 80px;
  margin-bottom: 50px;
  transition: height 0.5s ease-in-out;
}
.hdtest-track {
  overflow: hidden;
  position: relative;
}
.hdtest-items-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  align-items: flex-start;
}
.hdtest-card {
  min-width: 100%;
  width: 100%;
  text-align: center;
  padding: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.hdtest-quote {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.7;
  color: #ffffff;
  font-style: italic;
  margin: 0 auto 35px;
  font-weight: 300;
  max-width: 750px;
}
.hdtest-author {
  display: inline-block;
  text-align: center;
}
.hdtest-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px 0;
}
.hdtest-role {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 10px 0;
}
.hdtest-rating {
  font-size: 1.3rem;
  color: #ffd700;
  margin: 0;
  letter-spacing: 2px;
}
.hdtest-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.hdtest-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}
.hdtest-arrow svg {
  width: 24px;
  height: 24px;
}
.hdtest-arrow-left {
  left: 0;
}
.hdtest-arrow-right {
  right: 0;
}
.hdtest-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.hdtest-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.hdtest-dot.active {
  background: #ffffff;
  width: 30px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .hdtest-wrapper {
    padding: 60px 15px;
  }
  .hdtest-container {
    padding-bottom: 50px;
  }
  .hdtest-slider {
    padding: 0 60px;
    margin-bottom: 40px;
  }
  .hdtest-arrow {
    width: 40px;
    height: 40px;
  }
  .hdtest-arrow svg {
    width: 20px;
    height: 20px;
  }
  .hdtest-quote {
    font-size: 1.15rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .hdtest-container {
    padding-bottom: 45px;
  }
  .hdtest-slider {
    padding: 0 50px;
    margin-bottom: 35px;
  }
}