main#page.features-page {
  max-width: none;
  width: 100%;
  padding: 0 !important;
}

.features-page {
  box-sizing: border-box;
  background: #fff;
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.features-page *,
.features-page *::before,
.features-page *::after {
  box-sizing: border-box;
}

.features-page,
.features-page h2,
.features-page h3,
.features-page p,
.features-page a,
.features-page li,
.features-page span {
  font-family: 'Roboto', sans-serif;
}

.features-page h2,
.features-page h3,
.features-page p,
.features-page ul,
.features-page li {
  margin: 0;
  padding: 0;
  float: none;
}

.features-page__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

.features-intro__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.features-page .features-intro__title {
  display: block;
  width: 100%;
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.features-page .features-intro__subtitle {
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 12px auto 0;
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.features-store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.features-intro--store-20 > .features-intro__copy + .features-store-buttons {
  margin-top: 20px;
}

.features-mobile-store-bar {
  display: none;
}

.features-metric-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.features-metric-grid--pairs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-content: initial;
}

.features-metric-grid--pairs .features-metric-card {
  flex: none;
  max-width: none;
}

.features-metric-grid--pairs .features-metric-card:nth-child(odd) {
  grid-column: 2 / span 2;
}

.features-metric-grid--pairs .features-metric-card:nth-child(even) {
  grid-column: 4 / span 2;
}

.features-metric-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 40px) / 3);
  flex-direction: column;
  align-items: center;
  max-width: calc((100% - 40px) / 3);
  padding: 20px;
  border-radius: 20px;
  background: #031959e5;
  text-align: center;
}

.features-page .features-metric-card__title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.features-page .features-metric-card__subtitle {
  margin-top: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.features-page .features-metric-card__link {
  margin-top: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-decoration: none;
}

.features-page .features-metric-card__link span {
  text-decoration: underline;
}

.features-metric-card__image {
  margin-top: 20px;
  width: 100%;
}

.features-metric-card__image picture,
.features-metric-card__image img {
  display: block;
  width: 100%;
}

.features-metric-card__image img {
  height: auto;
}

.features-cards + .features-store-buttons {
  margin-top: 60px;
}

.features-store-buttons__link {
  display: block;
  line-height: 0;
}

.features-store-buttons__link img {
  display: block;
  width: 160px;
  height: 54px;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.features-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
}

.features-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  line-height: 0;
}

.features-card__media img {
  display: block;
  width: 100%;
  height: 110%;
  object-fit: cover;
}

.features-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
  margin-top: -40px;
  padding: 26px 42px;
  border-radius: 20px 20px 0 0;
  background: rgba(26, 43, 93, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: left;
}

.features-page .features-card__title {
  margin: 0;
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.features-page .features-card__subtitle {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
}

.features-page .features-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.features-card__item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.features-card__item img {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.features-page .features-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 14px 0 0;
  padding: 14px 0;
  border: 0;
  border-radius: 999px;
  background: rgba(46, 85, 249, 1);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
}

.features-page .features-card--center .features-card__title,
.features-page .features-card--center .features-card__subtitle {
  text-align: center;
}

.features-card__cta img {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.features-optimize {
  margin-top: 60px;
}

.features-page .features-optimize__title {
  display: block;
  width: 100%;
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.features-optimize__title-break {
  display: none;
}

.features-optimize__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.features-optimize-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 446px;
  overflow: hidden;
  border-radius: 34px;
}

.features-optimize-card__media {
  position: absolute;
  inset: 0;
}

.features-optimize-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-optimize-card__content {
  position: relative;
  z-index: 1;
  padding: 48px 32px 48px 24px;
  text-align: left;
}

.features-page .features-optimize-card__title {
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.features-page .features-optimize-card__subtitle {
  margin: 8px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.features-optimize__cards + .features-store-buttons {
  margin-top: 60px;
}

.features-trusted {
  margin-top: 60px;
}

.features-trusted__slider {
  margin-top: 40px;
}

.features-trusted__viewport {
  overflow: hidden;
  width: 100%;
  container-type: inline-size;
}

.features-trusted__track {
  display: flex;
  gap: 40px;
  transition: transform 0.3s ease;
}

.features-trusted__track > * {
  flex: 0 0 calc((100cqi - 80px) / 3);
  width: calc((100cqi - 80px) / 3);
  min-width: calc((100cqi - 80px) / 3);
}

.features-trusted__progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.features-trusted__segment {
  width: 40px;
  height: 3px;
  flex: 0 0 40px;
  border-radius: 999px;
  background: #9199a4;
}

.features-trusted__segment--active {
  background: #474362;
}

.features-trusted__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.features-trusted__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #09042d;
  cursor: pointer;
}

.features-trusted__btn img {
  display: block;
}

.features-trusted__stack {
  display: none;
}

.features-trusted-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 446px;
  overflow: hidden;
  border-radius: 34px;
}

.features-trusted-card__media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.features-trusted-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-trusted-card__content {
  position: relative;
  z-index: 1;
  padding: 48px 32px 48px 24px;
  text-align: left;
}

.features-page .features-trusted-card__title {
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.features-page .features-trusted-card__subtitle {
  margin: 8px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.features-plans {
  margin-top: 60px;
}

.features-plans__table-wrap {
  max-width: 740px;
  margin: 40px auto 0;
  padding: 40px;
  border-radius: 20px;
  background: #031959e5;
}

.features-plans__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.features-plans__col-feature {
  width: 60%;
}

.features-plans__col-plan {
  width: 20%;
}

.features-plans__table th,
.features-plans__table td {
  padding: 8px 0;
  border-top: none;
  border-bottom: 1px solid #6b6b6b;
  color: #ffffffb2;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: middle;
}

.features-plans__table th:last-child {
  color: #938eff;
  font-weight: 700;
}

.features-plans__table tbody tr:nth-child(n + 5) td:first-child {
  color: #938eff;
  font-weight: 700;
}

.features-plans__table th:first-child,
.features-plans__table td:first-child {
  text-align: left;
}

.features-plans__table th:not(:first-child),
.features-plans__table td:not(:first-child) {
  text-align: center;
}

.features-plans__table img {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.features-plans__table-wrap + .features-store-buttons {
  margin-top: 60px;
}

.features-devices {
  margin-top: 60px;
}

.features-devices__grid {
  display: grid;
  grid-template-columns: repeat(4, 242px);
  column-gap: 12px;
  row-gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.features-device {
  width: 242px;
}

.features-device__image {
  display: block;
  width: 242px;
  height: 242px;
  object-fit: contain;
}

.features-page .features-device__name {
  margin-top: 12px;
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.features-discover {
  margin-top: 60px;
}

.features-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  padding: 40px 92px;
  border-radius: 20px;
  background: #eaf6ff;
}

.features-cta__copy {
  flex: 1 1 0;
  min-width: 0;
}

.features-page .features-cta__title {
  color: #000;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  padding-right: 50px;
}

.features-page .features-cta__subtitle {
  margin-top: 12px;
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}

.features-cta .features-store-buttons {
  justify-content: flex-start;
  margin-top: 20px;
}

.features-cta__media {
  flex: 0 1 auto;
}

.features-cta__media img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 402px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .features-cards,
  .features-optimize__cards {
    grid-template-columns: 1fr;
  }

  .features-devices__grid {
    grid-template-columns: repeat(2, 242px);
  }
}

@media (max-width: 767px) {
  .features-page__inner {
    padding: 40px 20px 60px;
  }

  .features-optimize-card__content {
    padding: 24px 28px;
  }

  .features-page .features-intro__title,
  .features-page .features-optimize__title,
  .features-page .features-cta__title {
    font-size: 30px;
  }

  .features-optimize__title-break {
    display: block;
  }

  .features-page .features-intro__subtitle {
    margin-top: 6px;
    font-size: 16px;
  }

  .features-store-buttons {
    display: none;
  }

  .features-metric-card {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
  }

  .features-page .features-metric-card__title,
  .features-page .features-metric-card__subtitle,
  .features-page .features-metric-card__link {
    align-self: stretch;
    text-align: left;
  }

  .features-metric-grid--pairs {
    display: flex;
    flex-direction: column;
  }

  .features-metric-grid--pairs .features-metric-card {
    grid-column: auto;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }

  .features-card__body {
    padding: 26px;
  }

  .features-optimize {
    margin-top: 40px;
  }

  .features-optimize__cards {
    gap: 20px;
    margin-top: 20px;
  }

  .features-optimize-card {
    min-height: 388px;
  }

  .features-trusted {
    margin-top: 40px;
  }

  .features-trusted__slider {
    display: none;
  }

  .features-trusted__stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .features-trusted__stack .features-trusted-card {
    min-height: 168px;
    height: 168px;
    background: #09042d;
  }

  .features-trusted__stack .features-trusted-card__content {
    padding: 16px 20px;
  }

  .features-page .features-trusted-card__title {
    font-size: 16px;
  }

  .features-page .features-trusted-card__subtitle {
    font-size: 12px;
  }

  .features-plans {
    margin-top: 40px;
  }

  .features-plans__table-wrap {
    max-width: none;
    padding: 16px;
  }

  .features-plans__table th,
  .features-plans__table td {
    font-size: 14px;
  }

  .features-devices {
    margin-top: 40px;
  }

  .features-devices__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
  }

  .features-device {
    width: 100%;
  }

  .features-device__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .features-page .features-device__name {
    font-size: 20px;
  }

  .features-discover {
    margin-top: 40px;
  }

  .features-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 40px;
    padding: 20px 15px;
  }

  .features-page .features-cta__subtitle {
    margin-top: 6px;
    font-size: 16px;
  }

  .features-cta .features-store-buttons {
    display: flex;
  }

  .features-cta .features-store-buttons__link img {
    width: 120px;
    height: auto;
  }

  .features-cta__media img {
    max-height: none;
    width: 100%;
  }

  .features-mobile-store-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 20px;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    z-index: 100;
  }

  .features-mobile-store-bar .features-store-buttons {
    display: flex;
    width: 100%;
    gap: 8px;
    margin-top: 0;
  }

  .features-mobile-store-bar .features-store-buttons__link {
    flex: 1 1 0;
    min-width: 0;
  }

  .features-mobile-store-bar .features-store-buttons__link img {
    width: 100%;
    height: auto;
  }

  .features-mobile-store-bar ~ .cta-holder {
    padding-bottom: 80px;
  }
}

@media (max-width: 375px) {
  .features-mobile-store-bar {
    padding: 4px 32px;
  }

  .features-mobile-store-bar ~ .cta-holder {
    padding-bottom: 68px;
  }
}
