.home-hero {
  background: linear-gradient(88.46deg, #161616 2.7%, #222 93.9%);
  border-bottom-left-radius: 46px;
  border-bottom-right-radius: 46px;
  padding: 132px clamp(16px, 5.8vw, 84px) 40px;
  margin-bottom: 48px;
  overflow: hidden;
}

.home-hero__inner {
  width: min(100%, 1318px);
  margin-inline: auto;
  display: grid;
  gap: 24px;
  align-items: center;
}

.home-hero__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 400;
  color: #fff;
  max-width: 500px;
}

.home-hero__text {
  margin-top: 20px;
  max-width: 575px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 28px;
  color: rgba(255, 255, 255, 0.48);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.home-hero__image {
  width: 100%;
  max-width: 970px;
  margin-inline: auto;
  object-fit: contain;
}

.home-fleet,
.home-features,
.home-reviews,
.home-faq {
  width: min(100% - 32px, 1318px);
  margin: 0 auto 48px;
}

.home-fleet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.home-fleet__title,
.home-features__title,
.home-reviews__title,
.home-faq__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 400;
  text-align: center;
  color: #1e1f1e;
}

.home-fleet__title {
  font-size: clamp(28px, 4vw, 40px);
}

.home-fleet__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
}

.home-fleet__tab {
  padding: 10px 16px;
  min-height: 44px;
  font-size: 15px;
  white-space: nowrap;
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  background: #f8f8f8;
}

.home-fleet__tab.is-active {
  background: #191919;
  color: #fff;
  font-weight: 600;
  border-color: #191919;
}

.home-fleet__panel {
  width: 100%;
}

.home-fleet__all {
  margin-top: 8px;
}

.home-features,
.home-faq {
  position: relative;
  background: #fff;
  border-radius: 29px;
  padding: 48px 20px 40px 0;
  overflow: hidden;
}

.home-features__title,
.home-faq__title {
  text-align: left;
  max-width: 700px;
  margin-bottom: 24px;
  padding-left: 20px;
}

.home-features__image,
.home-faq__image {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 0 24px;
  object-fit: contain;
  justify-self: start;
}

.home-features__grid,
.home-faq__list {
  padding-left: 20px;
}

.home-features__grid {
  display: grid;
  gap: 16px;
}

.home-reviews {
  position: relative;
  min-height: auto;
  padding-bottom: 24px;
}

.home-reviews__lead {
  max-width: 626px;
  margin: 16px auto 24px;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  color: #242425;
  opacity: 0.6;
}

.home-reviews__image {
  width: min(100%, 804px);
  margin: 0 auto 24px;
  object-fit: contain;
}

.home-reviews__slider {
  display: flex;
  justify-content: center;
}

.home-reviews__cta {
  display: flex;
  width: fit-content;
  margin: 24px auto 0;
}

.home-faq__list {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .home-fleet__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    background: #f8f8f8;
  }
  .home-fleet__tab {
    padding: 12px 20px;
    min-height: 53px;
    font-size: 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .home-fleet__tab.is-active {
    border-radius: 0 6px 6px 0;
    border-color: transparent;
  }
}
@media (min-width: 1024px) {
  .home-hero__inner {
    grid-template-columns: 1fr 1.1fr;
    min-height: 520px;
  }
  .home-hero__actions {
    justify-content: flex-start;
  }
  .home-hero {
    padding-top: 80px;
    padding-bottom: 0;
  }
  .home-features,
  .home-faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding: 61px 40px 40px 0;
    align-items: start;
  }
  .home-features__title,
  .home-faq__title {
    grid-column: 1/-1;
    padding-left: 40px;
  }
  .home-features__image,
  .home-faq__image {
    margin: 0;
    max-width: none;
  }
  .home-features__grid,
  .home-faq__list {
    padding-left: 0;
  }
  .home-reviews {
    display: grid;
    grid-template-columns: 420px 1fr;
    grid-template-rows: auto auto 1fr auto;
    min-height: 620px;
    align-items: start;
  }
  .home-reviews__title {
    grid-column: 2;
    text-align: left;
  }
  .home-reviews__lead {
    grid-column: 2;
    text-align: left;
    margin: 12px 0 0;
  }
  .home-reviews__slider {
    grid-column: 1;
    grid-row: 2/4;
    justify-content: flex-start;
    z-index: 1;
  }
  .home-reviews__image {
    grid-column: 2;
    grid-row: 3/5;
    margin: 0;
    justify-self: end;
  }
  .home-reviews__cta {
    grid-column: 1;
    margin: 24px 0 0;
  }
}
@media (min-width: 1280px) {
  .home-features__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/*# sourceMappingURL=home.css.map */