:root {
  --primary-color: #155efe;
  --secondary-color: #0f1a20;
  --background-color: #f7f9ff;
  --text-color: #0f1a20;
}

main {
  background: var(--background-color);
}

.tm-hero {
  background: linear-gradient(130deg, var(--secondary-color) 10%, var(--primary-color) 60%, #0b1320 100%);
  padding: 170px 0 110px;
  position: relative;
  overflow: hidden;
}

.tm-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(6px);
}

.tm-hero__content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.tm-kicker {
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.tm-hero__title {
  color: #ffffff;
  font-size: 64px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.tm-hero__subtitle {
  color: #e8efff;
  max-width: 650px;
  font-size: 16px;
  line-height: 1.9;
}

.tm-testimonials {
  background: var(--background-color);
}

.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tm-carousel {
  display: block;
}

.tm-carousel .tm-card {
  margin: 0 12px;
}

.tm-carousel .slick-list {
  margin: 0 -12px;
  padding: 8px 0 18px;
}

.tm-carousel .slick-track {
  display: flex !important;
}

.tm-carousel .slick-slide {
  height: inherit !important;
}

.tm-carousel .slick-slide > div {
  height: 100%;
}

.tm-carousel .reveal,
.tm-carousel .slick-slide.slick-cloned .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.tm-carousel .slick-dots {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.tm-carousel .slick-dots li {
  margin: 0 4px;
}

.tm-carousel .slick-dots li button:before {
  color: var(--primary-color);
  opacity: 0.35;
  font-size: 10px;
  line-height: 20px;
}

.tm-carousel .slick-dots li.slick-active button:before {
  opacity: 1;
}

.tm-card {
  background: #ffffff;
  border: 1px solid #e6edff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15, 26, 32, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(21, 94, 254, 0.2);
  border-color: rgba(21, 94, 254, 0.35);
}

.tm-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.tm-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #edf2ff;
}

.tm-avatar--svg {
  border: none;
  padding: 0;
}

.tm-avatar__svg {
  width: 62px;
  height: 62px;
  display: block;
}

.tm-avatar__circle {
  fill: var(--primary-color);
}

.tm-avatar__initials {
  fill: #ffffff;
  font-size: 22px;
  font-weight: 600;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.tm-name {
  font-size: 20px;
  color: var(--text-color);
  line-height: 1.2;
}

.tm-role {
  margin-top: 4px;
  color: #5a6978;
  font-size: 13px;
  line-height: 1.5;
}

.tm-stars {
  color: #ffc315;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.tm-text {
  color: #2c3a45;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 12px;
}

.tm-source {
  display: inline-block;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: 1px dashed rgba(21, 94, 254, 0.4);
}

.tm-source:hover,
.tm-source:focus-visible {
  color: #0c4bdb;
  border-bottom-color: rgba(12, 75, 219, 0.65);
}

.tm-highlight {
  background: #eef3ff;
  padding: 110px 0;
}

.tm-featured {
  background: #ffffff;
  border: 1px solid #dce7ff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 14px 34px rgba(15, 26, 32, 0.1);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
}

.tm-featured__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #edf2ff;
}

.tm-featured__kicker {
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tm-featured__title {
  color: var(--secondary-color);
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.tm-featured__text {
  color: #2c3a45;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 10px;
}

.tm-featured__author {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.tm-source--featured {
  font-size: 13px;
}

.tm-feedback-bottom {
  background: var(--background-color);
  padding: 0 0 90px;
}

.tm-feedback-bottom__box {
  background: linear-gradient(125deg, #ffffff 0%, #eef3ff 100%);
  border: 1px solid #dce7ff;
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: 0 12px 30px rgba(15, 26, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.tm-kicker--dark {
  color: var(--primary-color);
}

.tm-feedback-bottom__text h2 {
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.tm-feedback-bottom__text p {
  color: #2c3a45;
  margin: 0;
}

.tm-feedback-bottom__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tm-btn--ghost {
  background: #ffffff;
  color: var(--primary-color);
}

.tm-btn--ghost:hover,
.tm-btn--ghost:focus-visible {
  color: #ffffff;
  background: var(--primary-color);
}

.tm-cta {
  background: var(--background-color);
  padding: 0 0 120px;
}

.tm-cta__box {
  background: #ffffff;
  border: 1px solid #dce7ff;
  border-radius: 20px;
  padding: 44px 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 26, 32, 0.08);
}

.tm-cta__box h2 {
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.tm-cta__box p {
  color: #2c3a45;
  max-width: 680px;
  margin: 0 auto 24px;
}

.tm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid var(--primary-color);
  background: linear-gradient(to right, #155efe 0%, #155eff 51%, #155efe 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.tm-btn:hover,
.tm-btn:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(21, 94, 254, 0.35);
  filter: brightness(1.03);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .tm-hero__title {
    font-size: 54px;
  }
}

@media (max-width: 991px) {
  .tm-hero {
    padding: 150px 0 90px;
  }

  .tm-hero__title {
    font-size: 44px;
  }

  .tm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tm-feedback-bottom__box {
    flex-direction: column;
    align-items: flex-start;
  }

  .tm-highlight {
    padding: 85px 0;
  }

  .tm-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tm-featured__avatar {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .tm-hero {
    padding: 130px 0 80px;
  }

  .tm-hero__title {
    font-size: 36px;
  }

  .tm-hero__subtitle {
    font-size: 15px;
  }

  .tm-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tm-carousel .tm-card {
    margin: 0 8px;
  }

  .tm-carousel .slick-list {
    margin: 0 -8px;
  }

  .tm-card {
    padding: 20px;
  }

  .tm-featured {
    padding: 26px 22px;
  }

  .tm-featured__title {
    font-size: 31px;
  }

  .tm-cta {
    padding: 0 0 90px;
  }

  .tm-feedback-bottom {
    padding: 0 0 70px;
  }

  .tm-cta__box {
    padding: 34px 20px;
  }
}
