.home-about {
  background: var(--paper);
}
.about-photo {
  position: relative;
  height: clamp(380px, 42vw, 540px);
  overflow: hidden;
  background: var(--night);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.about-photo:hover img {
  transform: scale(1.035);
}
.about-photo-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 4px;
  background: rgba(17, 19, 20, 0.7);
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}
.benefit-rows {
  list-style: none;
  margin-block: 25px;
}
.benefit-rows li {
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.benefit-rows i {
  color: var(--blue);
  margin-right: 14px;
  width: 22px;
}
.testimonials-section {
  background:
    linear-gradient(135deg, rgba(0, 123, 237, 0.1), transparent 34%),
    var(--night);
  color: white;
  overflow: hidden;
}
.testimonials-heading {
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.testimonials-heading h2 {
  max-width: none;
  color: #80c8ff;
  font-size: clamp(34px, 4.6vw, 50px);
  letter-spacing: 0;
}
.logo-marquee {
  position: relative;
  margin-bottom: 42px;
  padding-block: 16px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--night), transparent);
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--night), transparent);
}
.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logoMarquee 34s linear infinite reverse;
}
.logo-strip {
  display: flex;
  align-items: center;
  gap: 62px;
  padding-right: 62px;
}
.logo-strip img {
  width: 138px;
  height: 88px;
  object-fit: contain;
  filter: brightness(1.18) contrast(1.05);
  opacity: 0.9;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}
.logo-strip img:hover {
  opacity: 1;
  transform: translateY(-2px);
}
@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.testimonial-carousel {
  position: relative;
  padding: 10px 0 2px;
}
.testimonial-viewport {
  overflow: hidden;
  padding: 2px;
}
.testimonial-track {
  display: flex;
  gap: 22px;
  transition: transform 0.62s cubic-bezier(0.2, 0.7, 0.3, 1);
  will-change: transform;
}
.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 350px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.045)
    ),
    rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(128, 200, 255, 0.42);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.055)
    ),
    rgba(255, 255, 255, 0.035);
}
.testimonial-card::before {
  content: "\f10d";
  position: absolute;
  right: 26px;
  top: 24px;
  color: rgba(128, 200, 255, 0.14);
  font: 900 46px/1 "Font Awesome 6 Free";
}
.testimonial-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-photo {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.28),
    0 0 0 7px rgba(128, 200, 255, 0.08);
}
.testimonial-top strong {
  display: block;
  color: white;
  font-weight: 700;
}
.testimonial-top small {
  display: block;
  margin-top: 3px;
  color: #aeb8c0;
  font-size: 13px;
}
.testimonial-rating {
  display: flex;
  gap: 6px;
  color: #80c8ff;
  font-size: 12px;
}
.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin-block: 30px 28px;
  color: #edf4f8;
  font-family: Manrope, Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.58;
}
.testimonial-author {
  position: relative;
  z-index: 1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.testimonial-author span {
  display: block;
  font-weight: 700;
}
.testimonial-author small {
  display: block;
  margin-top: 4px;
  color: #aeb8c0;
  font-size: 13px;
}
.testimonial-controls {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.testimonial-controls .icon-button {
  width: 48px;
  height: 48px;
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
.testimonial-controls .icon-button:hover {
  background: rgba(255, 255, 255, 0.14);
}
.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-dots button {
  width: 32px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition:
    width 0.25s,
    background 0.25s;
}
.testimonial-dots button.is-active {
  width: 54px;
  background: #80c8ff;
}
@media (max-width: 760px) {
  .about-photo {
    height: 320px;
  }
  .testimonial-card {
    flex-basis: 100%;
    min-height: 340px;
    padding: 24px;
  }
  .testimonials-heading {
    text-align: left;
  }
  .testimonials-heading h2 {
    font-size: 34px;
  }
  .logo-marquee {
    margin-bottom: 30px;
    padding-block: 14px;
  }
  .logo-marquee::before,
  .logo-marquee::after {
    width: 54px;
  }
  .logo-strip {
    gap: 34px;
    padding-right: 34px;
  }
  .logo-strip img {
    width: 108px;
    height: 70px;
  }
  .testimonial-photo {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
  }
  .testimonial-card blockquote {
    font-size: 18px;
    line-height: 1.6;
  }
  .testimonial-controls {
    justify-content: space-between;
  }
  .testimonial-dots button {
    width: 24px;
  }
  .testimonial-dots button.is-active {
    width: 38px;
  }
}
@media (min-width: 761px) and (max-width: 1100px) {
  .testimonial-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}
