.fixed-scope-page {
  background: #ffffff;
  color: #111111;
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.fixed-scope-page__container {
  width: min(1170px, calc(100% - 32px));
  margin: 0 auto;
}

.fixed-scope-hero {
  background-color: #ffffff;
  padding: 45px 0 50px;
}

.fixed-scope-hero__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.fixed-scope-hero__leftside {
  width: 52.2%;
}

.fixed-scope-hero__rightside {
  width: 47.8%;
}

.fixed-scope-hero__text {
  max-width: 570px;
  margin-bottom: 30px;
}

.fixed-scope-hero__eyebrow {
  margin: 0 0 18px;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  color: #e60078;
}

.fixed-scope-hero__title {
  margin: 0 0 15px;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: #000000;
}

.fixed-scope-hero__title-accent {
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #e60078;
}

.fixed-scope-hero__description {
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
}

.fixed-scope-hero__description p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.fixed-scope-hero__description > *:first-child {
  margin-top: 0;
}

.fixed-scope-hero__description > *:last-child {
  margin-bottom: 0;
}

.fixed-scope-hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #E7EDF4;
}

.fixed-scope-hero__button-primary {
  margin-right: 10px;
}

.fixed-scope-hero__button-secondary {
  margin-right: 30px;
}

.fixed-scope-hero__button-secondary a,
.fixed-scope-hero__button-primary a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 30px;
  transition: background-color .35s, border-color .35s, color .35s;
}

.fixed-scope-hero__button-secondary a {
  width: 138px;
  border: 1px solid #000000;
}

.fixed-scope-hero__button-primary a {
  width: 151px;
  background: #e60078;
}

.fixed-scope-hero__button-secondary a:hover {
  background: #000000;
}

.fixed-scope-hero__button-primary a:hover {
  background: #c60067;
}

.fixed-scope-hero__button-secondary span,
.fixed-scope-hero__button-primary span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
}

.fixed-scope-hero__button-secondary span {
  color: #000000;
}

.fixed-scope-hero__button-primary span {
  color: #ffffff;
}

.fixed-scope-hero__button-secondary a:hover span {
  color: #ffffff;
}

.fixed-scope-hero__reviews {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.fixed-scope-hero__reviews img {
  display: block;
  flex-shrink: 0;
}

.fixed-scope-hero__reviews-divider {
  width: 1px;
  height: 36px;
  background: #d8d8d8;
}

.fixed-scope-hero__reviews-copy p {
  margin: 0 0 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.2;
  color: #555555;
}

.fixed-scope-hero__reviews-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fixed-scope-hero__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 30px;
}

.fixed-scope-hero__benefit {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  position: relative;
  overflow: visible;
}

.fixed-scope-hero__benefit > img:first-child {
  margin-right: 10px;
}

.fixed-scope-hero__benefit span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: #3b3b3b;
}

.fixed-scope-hero__benefit-info {
  width: 14px;
  height: 14px;
  margin-left: 0;
  flex-shrink: 0;
  display: block;
}

.fixed-scope-hero__benefit-tooltip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  align-self: baseline;
}

.fixed-scope-hero__benefit-tooltip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  height: auto;
  min-height: 0;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.fixed-scope-hero__benefit-tooltip-trigger:hover,
.fixed-scope-hero__benefit-tooltip-trigger:focus {
  background: transparent;
}

.fixed-scope-hero__benefit-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 5;
  width: 260px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #111111;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.18);
  color: #ffffff!important;
  font-family: 'Inter', sans-serif;
  font-size: 13px!important;
  line-height: 18px!important;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}


.fixed-scope-hero__benefit-tooltip-wrap:hover .fixed-scope-hero__benefit-tooltip,
.fixed-scope-hero__benefit-tooltip-wrap:focus-within .fixed-scope-hero__benefit-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.fixed-scope-hero__media {
  max-width: 453px;
  max-height: 470px;
  margin-left: auto;
}

.fixed-scope-hero__media img,
.fixed-scope-hero__media video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.fixed-scope-comparison {
  background: #f9fafd;
  padding: 56px 0;
}

.fixed-scope-comparison__inner {
  width: 100%;
}

.fixed-scope-comparison__intro-copy {
  max-width: 1170px;
}

.fixed-scope-comparison__intro {
  padding-bottom: 23px;
  max-width: 800px;
  margin: auto;
}

.fixed-scope-comparison__title {
  margin: 0 0 10px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 28px!important;
  line-height: 36px!important;
  font-weight: 700;
  color: #111111;
}

.fixed-scope-comparison__title-accent {
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #e60078;
}

.fixed-scope-comparison__description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #111111;
}

.fixed-scope-comparison__description p {
  margin: 0 0 10px;
  font: inherit;
  color: inherit;
  text-align: center;
}

.fixed-scope-comparison__description p:last-child {
  margin-bottom: 0;
}

.fixed-scope-comparison__table-wrap {
  width: 100%;
}

.fixed-scope-comparison__table-scroll {
  overflow-x: auto;
}

.fixed-scope-comparison__table {
  min-width: 1170px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.fixed-scope-comparison__row {
  display: grid;
  grid-template-columns: minmax(320px, 2.7fr) repeat(3, minmax(160px, 1fr));
}

.fixed-scope-comparison__row:nth-child(even) {
}

.fixed-scope-comparison__row:nth-child(odd):not(.fixed-scope-comparison__row--head) {
  background: #F1F3F8;
}

.fixed-scope-comparison__row--head {
  border-bottom: 2px solid #F1F3F8;
}

.fixed-scope-comparison__cell {
  min-height: 54px;
  padding: 17px 15px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.fixed-scope-comparison__cell--feature {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #000000;
}

.fixed-scope-comparison__row--head .fixed-scope-comparison__cell--feature,
.fixed-scope-comparison__cell--model {
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  color: inherit;
}

.fixed-scope-comparison__cell--model {
  justify-content: left;
  text-align: center;
}

.fixed-scope-comparison__cell--model-active {
  color: #e60078;
}

.fixed-scope-comparison__cell--rating {
  justify-content: center;
}

.fixed-scope-comparison__stars {
  display: flex;
  align-items: center;
  justify-content: left;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
}

.fixed-scope-comparison__stars img {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

.fixed-scope-fit {
  background: #ffffff;
  padding: 56px 0 72px;
}

.fixed-scope-fit__intro {
  max-width: 760px;
  margin: 0 auto 42px;
}

.fixed-scope-fit__title {
  margin: 0 0 10px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 28px!important;
  line-height: 36px!important;
  font-weight: 700;
  color: #111111;
}

.fixed-scope-fit__title-accent {
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #e60078;
}

.fixed-scope-fit__description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #111111;
}

.fixed-scope-fit__description p {
  margin: 0;
  text-align: center;
  font: inherit;
  color: inherit;
}

.fixed-scope-fit__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}

.fixed-scope-fit__card {
  position: relative;
  width: 250px;
  height: 254px;
  padding: 24px 20px;
  border-radius: 4px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.fixed-scope-fit__card + .fixed-scope-fit__card {
  margin-left: -14px;
}

.fixed-scope-fit__card--solid {
  border: 1px solid #555555;
  z-index: 2;
}

.fixed-scope-fit__card--dashed {
  height: 284px;
  margin-top: 0px;
  border: 1px dashed #8f8f8f;
  z-index: 1;
}

.fixed-scope-fit__card-image {
  min-height: 100px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-scope-fit__card-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.fixed-scope-fit__card-text {
  margin: 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
  color: #000000;
  max-width: 200px;
}

.fixed-scope-types {
  background: #f9fafd;
  padding: 56px 0 64px;
}

.fixed-scope-types__intro {
  max-width: 760px;
  margin: 0 auto 28px;
}

.fixed-scope-types__title {
  margin: 0 0 10px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 28px!important;
  line-height: 36px!important;
  font-weight: 700;
  color: #111111;
}

.fixed-scope-types__title-accent {
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #e60078;
}

.fixed-scope-types__description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #111111;
}

.fixed-scope-types__description p {
  margin: 0;
  text-align: center;
  font: inherit;
  color: inherit;
}

.fixed-scope-types__table {
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) minmax(200px, 0.82fr) 15px minmax(200px, 0.82fr);
  align-items: stretch;
}

.fixed-scope-types__cell {
  box-sizing: border-box;
}

.fixed-scope-types__cell--spacer {
  min-height: 32px;
}

.fixed-scope-types__cell--gap {
  min-height: 1px;
}

.fixed-scope-types__cell--head {
  min-height: 33px;
  padding: 8px 20px;
  background: #dde3ee;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #111111;
  border-top: 2px solid #CCD0DB;
}

.fixed-scope-types__cell--ideal.fixed-scope-types__cell--head {
  border-left: 2px solid #CCD0DB;
  border-right: 2px solid #CCD0DB;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-color: #E0E3EC;
  padding: 15px 18px;
}

.fixed-scope-types__cell--delivery.fixed-scope-types__cell--head {
  border-left: 2px solid #CCD0DB;
  border-right: 2px solid #CCD0DB;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-color: #E0E3EC;
  padding: 15px 18px;
}

.fixed-scope-types__cell--project {
  min-height: 120px;
  padding: 28px 24px 26px 20px;
}

.fixed-scope-types__cell--project.fixed-scope-types__cell--alt {
  background: rgba(221, 227, 238, 0.28);
}

.fixed-scope-types__project-title {
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 20px!important;
  line-height: 28px!important;
  font-weight: 600;
  color: #000000;
}

.fixed-scope-types__project-description {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 24px;
  font-weight: 400;
  color: #2f2f2f;
}

.fixed-scope-types__cell--ideal,
.fixed-scope-types__cell--delivery {
  min-height: 50px;
  padding: 40px 25px;
  border-left: 2px solid #CCD0DB;
  border-right: 2px solid #CCD0DB;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-scope-types__cell--ideal.fixed-scope-types__cell--alt,
.fixed-scope-types__cell--delivery.fixed-scope-types__cell--alt {
  background: #f1f3f8
}

.fixed-scope-types__cell--ideal p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #3c3c3c;
}

.fixed-scope-types__cell--delivery p {
  margin: 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #000000;
}

.fixed-scope-types__cell--bottom {
  border-bottom: 2px solid #CCD0DB;
}

.fixed-scope-types__cell--ideal.fixed-scope-types__cell--bottom {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.fixed-scope-types__cell--delivery.fixed-scope-types__cell--bottom {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.fixed-scope-types__mobile-cards {
  display: none;
}

.fixed-scope-types__mobile-card {
  border: 1px solid #DDE3EE;
  border-radius: 18px;
  background: linear-gradient(180deg, #EFF2FF 0%, #FFFFFF 48%);
  padding: 16px 14px 18px;
}

.fixed-scope-types__mobile-card + .fixed-scope-types__mobile-card {
  margin-top: 12px;
}

.fixed-scope-types__mobile-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.fixed-scope-types__mobile-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.fixed-scope-types__mobile-title {
  margin: 0 0 8px;
  font-family: 'Inter', sans-serif;
  font-size: 17px!important;
  line-height: 24px!important;
  font-weight: 600;
  color: #111111;
}

.fixed-scope-types__mobile-description {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #333333;
}

.fixed-scope-types__mobile-divider {
  width: 100%;
  height: 1px;
  margin: 20px 0 20px;
  background: #E2E6EF;
}

.fixed-scope-types__mobile-detail + .fixed-scope-types__mobile-detail {
  margin-top: 20px;
}

.fixed-scope-types__mobile-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.fixed-scope-types__mobile-label img {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.fixed-scope-types__mobile-label span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: #444444;
}

.fixed-scope-types__mobile-copy {
  margin: 0;
  padding-left: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #333333;
}

.fixed-scope-types__mobile-copy--delivery {
  font-weight: 600;
  color: #111111;
}

.fixed-scope-advantages {
  background: #ffffff;
  padding: 56px 0 72px;
}

.fixed-scope-advantages__intro {
  max-width: 760px;
  margin: 0 auto 30px;
}

.fixed-scope-advantages__title {
  margin: 0 0 10px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 28px!important;
  line-height: 36px!important;
  font-weight: 700;
  color: #111111;
}

.fixed-scope-advantages__title-accent {
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: #e60078;
}

.fixed-scope-advantages__description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #111111;
}

.fixed-scope-advantages__description p {
  margin: 0;
  text-align: center;
  font: inherit;
  color: inherit;
}

.fixed-scope-advantages__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.fixed-scope-advantages__list {
  width: 40.2%;
  align-self: center;
}

.fixed-scope-advantages__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.fixed-scope-advantages__item + .fixed-scope-advantages__item {
  margin-top: 20px;
}

.fixed-scope-advantages__icon {
  width: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
}

.fixed-scope-advantages__icon img {
  display: block;
  width: 24px;
  height: 24px;
}

.fixed-scope-advantages__copy {
  min-width: 0;
}

.fixed-scope-advantages__item-title {
  margin: 0 0 6px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #111111;
}

.fixed-scope-advantages__item-description {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #4a4a4a;
}

.fixed-scope-advantages__media {
  width: 57.8%;
  max-width: 570px;
}

.fixed-scope-advantages__media img {
  display: block;
  width: 100%;
  max-width: 570px;
  max-height: 410px;
  height: auto;
  border-radius: 8px;
}

.fixed-scope-working-software {
  background: #F9FAFD;
  padding: 40px 0 100px;
}

.fixed-scope-working-software__heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.fixed-scope-working-software__heading h2 {
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 28px!important;
  line-height: 36px!important;
  font-weight: 700;
  color: #111111;
}

.fixed-scope-working-software__heading h2 span {
  color: #e60078;
}

.fixed-scope-working-software__heading p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #111111;
}

.fixed-scope-working-software__diagram {
  display: grid;
  grid-template-columns: 1fr 400px 300px;
}

.fixed-scope-working-software__diagram--line1 {
  margin-bottom: 135px;
}

.fixed-scope-working-software__box {
  box-sizing: border-box;
}

.fixed-scope-working-software__box--left {
  padding-left: 69px;
}

.fixed-scope-working-software__box--mid {
  padding-right: 11px;
}

.fixed-scope-working-software__box--left-has-top-arrow {
  position: relative;
}

.fixed-scope-working-software__image-box {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  position: relative;
}

.fixed-scope-working-software__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fixed-scope-working-software__icon svg {
  display: block;
}

.fixed-scope-working-software__arrow-inline {
  display: flex;
  align-items: center;
}

.fixed-scope-working-software__arrow {
  display: block;
}

.fixed-scope-working-software__arrow--top-left {
  position: absolute;
  right: 0;
  top: 39px;
  min-width: 605px;
  height: 254px;
}

.fixed-scope-working-software__arrow--top-right {
  min-width: 560px;
  position: absolute;
  bottom: calc(100% - 39px);
  left: 0;
}

.fixed-scope-working-software__content {
  position: relative;
  z-index: 2;
}

.fixed-scope-working-software__content h3 {
  margin: 0 0 10px;
  max-width: 270px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 20px;
  font-weight: 600;
  color: #000000;
}

.fixed-scope-working-software__content p {
  margin: 0;
  max-width: 270px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #000000;
}

.fixed-scope-working-software__content span {
  font-weight: 600;
}

.fixed-scope-happy-clients {
  background: #ffffff;
  padding: 40px 0;
  position: relative;
}

.fixed-scope-happy-clients__heading {
  text-align: center;
  margin-bottom: 30px;
}

.fixed-scope-happy-clients__heading h2 {
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 28px!important;
  line-height: 36px!important;
  font-weight: 700;
  color: #000000;
}

.fixed-scope-happy-clients__heading h2 span {
  color: #e60078;
}

.fixed-scope-happy-clients__heading p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
}

.fixed-scope-happy-clients__boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.fixed-scope-happy-clients__box {
  border-radius: 18px;
  border: 1px solid #cdd5de;
  padding: 40px 30px 30px;
  position: relative;
  transition: 0.6s;
  min-height: 300px;
  box-sizing: border-box;
  background: #ffffff;
  display: block;
}

.fixed-scope-happy-clients__box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(270deg, #3e93f7, #e60a78, #3e93f7, #e60a78);
  background-size: 300% 300%;
  animation: borderMove 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
  opacity: 0;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  left: -2px;
  top: -1px;
  transition: 0.5s;
  pointer-events: none;
}

.fixed-scope-happy-clients__box-content {
  position: relative;
  z-index: 3;
}

.fixed-scope-happy-clients__box-content img {
  margin-bottom: 30px;
}

.fixed-scope-happy-clients__box-content p {
  margin: 0 0 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #444444;
}

.fixed-scope-happy-clients__box-content h3 {
  margin: 0 0 5px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 19px;
  font-weight: 600;
  color: #222222;
}

.fixed-scope-happy-clients__box-content h4 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #666666;
}

.fixed-scope-happy-clients__box--last {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fixed-scope-happy-clients__box--last::before,
.fixed-scope-happy-clients__box--last:hover::before {
  opacity: 1;
}

.fixed-scope-happy-clients__box-link {
  text-align: center;
}

.fixed-scope-happy-clients__box-link h3 {
  margin: 0 0 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  color: #000000;
}

.fixed-scope-happy-clients__button {
  text-align: center;
  margin-top: 20px;
}

.fixed-scope-happy-clients__button a {
  display: inline-block;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  padding: 15px 30px;
  background-color: #e60078;
  border-radius: 25px;
  cursor: pointer;
}

.fixed-scope-case-studies {
  background-color: #f9fafd;
  padding: 40px 0;
  position: relative;
}

.fixed-scope-case-studies__heading {
  text-align: center;
  margin-bottom: 30px;
}

.fixed-scope-case-studies__heading h2 {
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 28px!important;
  line-height: 36px!important;
  font-weight: 700;
  color: #000000;
}

.fixed-scope-case-studies__heading h2 span {
  color: #e60078;
}

.fixed-scope-case-studies__heading p {
  margin: 0 auto;
  max-width: 770px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
}

.fixed-scope-case-studies__tabs {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.fixed-scope-case-studies__tab {
  border: 1px solid #cdd5de;
  border-radius: 6px;
  padding: 9px 15px;
  cursor: pointer;
  position: relative;
}

.fixed-scope-case-studies__tab::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(270deg, #3e93f7, #e60a78, #3e93f7, #e60a78);
  background-size: 300% 300% !important;
  animation: borderMove 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  opacity: 0;
  transition: 0.6s;
}

.fixed-scope-case-studies__tab p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #666666;
  position: relative;
  z-index: 1;
}

.fixed-scope-case-studies__tab.active {
  border-color: transparent;
  border-radius: 24px;
}

.fixed-scope-case-studies__tab.active::before,
.fixed-scope-case-studies__tab:hover::before {
  opacity: 1;
}

.fixed-scope-case-studies__tab.active p,
.fixed-scope-case-studies__tab:hover p {
  color: #000000;
}

.fixed-scope-case-studies__panel {
  display: none;
}

.fixed-scope-case-studies__panel.active {
  display: block;
}

.fixed-scope-case-studies__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 21px;
}

.fixed-scope-case-studies__item {
  padding: 1px;
  background-color: #ffffff;
  border: 1px solid #cdd5de;
  border-radius: 8px;
  position: relative;
  display: block;
}

.fixed-scope-case-studies__item.active {
  border-radius: 8px 8px 2px 2px;
}

.fixed-scope-case-studies__item::after {
  display: block;
  content: "";
  width: calc(100% + 2px);
  height: 3px;
  left: -1px;
  bottom: -1px;
  position: absolute;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(270deg, #3e93f7, #e60a78, #3e93f7, #e60a78);
  background-size: 300% 300%;
  animation: borderMove 8s ease infinite;
  opacity: 0;
  transition: 0.4s;
}

.fixed-scope-case-studies__item.active::after {
  opacity: 1;
}

.fixed-scope-case-studies__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px 7px 0 0;
}

.fixed-scope-case-studies__item-content {
  padding: 20px 30px 30px;
}

.fixed-scope-case-studies__item-content h3 {
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
  color: #000000;
}

.fixed-scope-case-studies__item-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  margin: 0;
  color: #444444;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
}

.fixed-scope-case-studies__link {
  text-align: center;
  margin-top: 20px;
}

.fixed-scope-case-studies__link a {
  color: #ffffff !important;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  padding: 13px 20px;
  background: #e60078;
  border-radius: 25px;
}

.fixed-scope-why-choose {
  background-color: #ffffff;
  padding: 40px 0;
  position: relative;
}

.fixed-scope-why-choose__heading {
  text-align: center;
  margin-bottom: 25px;
}

.fixed-scope-why-choose__heading h2 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 28px!important;
  line-height: 36px!important;
  font-weight: 700;
  color: #000000;
}

.fixed-scope-why-choose__heading h2 span {
  color: #e60078;
}

.fixed-scope-why-choose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.fixed-scope-why-choose__row {
  border: 1px solid #cdd5de;
  border-radius: 18px;
  padding: 35px 30px 40px;
  position: relative;
  box-sizing: border-box;
}

.fixed-scope-why-choose__row::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(270deg, #3e93f7, #e60a78, #3e93f7, #e60a78);
  background-size: 300% 300%;
  animation: borderMove 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
  opacity: 0;
  width: calc(100% + 0px);
  height: calc(100% + 0px);
  left: -2px;
  top: -1px;
  transition: 0.5s;
  pointer-events: none;
}

.fixed-scope-why-choose__row.active::before {
  opacity: 1;
}

.fixed-scope-why-choose__right {
  margin-top: 15px;
}

.fixed-scope-why-choose__right h3 {
  margin: 0 0 5px;
  font-family: 'Inter', sans-serif;
  font-size: 15px!important;
  line-height: 20px!important;
  font-weight: 600;
  color: #000000;
}

.fixed-scope-why-choose__right p,
.fixed-scope-why-choose__right p span {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #444444;
}

.fixed-scope-why-choose__right p span {
  font-weight: 600;
}

.fixed-scope-why-choose__icon-btn {
  background-color: transparent;
  outline: none;
  position: relative;
  width: 44px;
  height: 44px;
  perspective: 24em;
  transform-style: preserve-3d;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
  border: 0;
}

.fixed-scope-why-choose__icon-btn-back,
.fixed-scope-why-choose__icon-btn-front {
  transition:
    opacity 0.3s cubic-bezier(0.83, 0, 0.17, 1),
    transform 0.3s cubic-bezier(0.83, 0, 0.17, 1);
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fixed-scope-why-choose__icon-btn-back {
  box-shadow: none;
  display: block;
  transform: rotate(15deg);
  transform-origin: 100% 100%;
}

.fixed-scope-why-choose__icon-btn-front {
  background-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  transform-origin: 80% 50%;
}

.fixed-scope-why-choose__icon-btn-icon {
  margin: auto;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-scope-why-choose__icon-btn-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.fixed-scope-why-choose__row:hover .fixed-scope-why-choose__icon-btn-back,
.fixed-scope-why-choose__row.active .fixed-scope-why-choose__icon-btn-back {
  transform: rotate(25deg) translate3d(-0.5em, -0.5em, 0.5em);
}

.fixed-scope-why-choose__row:hover .fixed-scope-why-choose__icon-btn-front,
.fixed-scope-why-choose__row.active .fixed-scope-why-choose__icon-btn-front {
  transform: translateZ(2em);
}

.fixed-scope-why-choose__row.row1 .fixed-scope-why-choose__icon-btn-front {
  background-color: rgba(255, 169, 77, 0.16);
  border: solid 1px rgba(255, 220, 203, 0.6);
}

.fixed-scope-why-choose__row.row2 .fixed-scope-why-choose__icon-btn-front {
  background-color: rgba(255, 215, 252, 0.16);
  border: solid 1px rgba(255, 210, 249, 0.6);
}

.fixed-scope-why-choose__row.row3 .fixed-scope-why-choose__icon-btn-front {
  background-color: rgba(255, 77, 79, 0.16);
  border: solid 1px rgba(255, 203, 204, 0.6);
}

.fixed-scope-why-choose__row.row4 .fixed-scope-why-choose__icon-btn-front {
  background-color: rgba(77, 255, 118, 0.16);
  border: solid 1px rgba(203, 255, 209, 0.6);
}

.fixed-scope-why-choose__row.row5 .fixed-scope-why-choose__icon-btn-front {
  background-color: rgba(100, 183, 255, 0.16);
  border: solid 1px rgba(197, 221, 255, 0.6);
}

.fixed-scope-why-choose__row--last {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.fixed-scope-why-choose__row--last h3 {
  margin: 0 auto 15px;
  max-width: 300px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  color: #000000;
}

.fixed-scope-why-choose__row--last a {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 24px;
  background: #e60078;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
}

.fixed-scope-technology {
  padding: 50px 0;
  background: #F9FAFD;
}

.fixed-scope-technology__heading {
  margin-bottom: 30px;
}

.fixed-scope-technology__heading h2 {
  margin: 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 28px!important;
  line-height: 36px!important;
  font-weight: 700;
  color: #222222;
}

.fixed-scope-technology__heading h2 span {
  color: #e60078;
}

.fixed-scope-technology__table {
  overflow: hidden;
  max-height: 881px;
  transition: max-height 0.5s ease;
}

.fixed-scope-technology__table.is-more {
  max-height: 1700px;
}

.fixed-scope-technology__container {
  background: #ffffff;
  border-left: 1px solid #E7EDF4;
}

.fixed-scope-technology__container:nth-child(odd) {
  background: linear-gradient(90deg, #F9FAFD, #FFFFFF);
}

.fixed-scope-technology__container--first {
  border-top: 1px solid #E7EDF4;
  border-radius: 10px 10px 0 0;
}

.fixed-scope-technology__container--last {
  border-radius: 0 0 10px 10px;
}

.fixed-scope-technology__row {
  display: grid;
  grid-template-columns: 170px 1fr;
}

.fixed-scope-technology__row--large .fixed-scope-technology__image-container {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fixed-scope-technology__title {
  display: flex;
  align-items: center;
  min-height: 100%;
  border-right: 1px solid #E7EDF4;
  border-bottom: 1px solid #E7EDF4;
}

.fixed-scope-technology__container--first .fixed-scope-technology__title {
  border-radius: 10px 0 0 0;
}

.fixed-scope-technology__container--last .fixed-scope-technology__title {
  border-radius: 0 0 0 10px;
}

.fixed-scope-technology__title h3 {
  position: relative;
  margin: 0;
  padding-left: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: #222222;
}

.fixed-scope-technology__title h3::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  width: 1px;
  height: 20px;
  background: #E60078;
  transform: translateY(-50%);
}

.fixed-scope-technology__image-container {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.fixed-scope-technology__image {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #E7EDF4;
  border-bottom: 1px solid #E7EDF4;
}

.fixed-scope-technology__row--large .fixed-scope-technology__image {
  height: 80px;
}

.fixed-scope-technology__container--first .fixed-scope-technology__image:last-child {
  border-radius: 0 10px 0 0;
}

.fixed-scope-technology__container--last .fixed-scope-technology__image:last-child {
  border-radius: 0 0 10px 0;
}

.fixed-scope-technology__image img {
  display: block;
  max-width: 100%;
}

.fixed-scope-technology__image--empty {
  pointer-events: none;
}

.fixed-scope-technology__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 20px auto 0;
  padding: 0 15px;
  height: 40px;
  border: 1px solid #000000;
  border-radius: 4px;
  background: #ffffff;
  cursor: pointer;
}

.fixed-scope-technology__button span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
  font-weight: 400;
  text-transform: none;
}

.fixed-scope-technology__button::after {
  content: "";
  display: block;
  width: 10px;
  height: 11px;
  transform: rotate(180deg);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="9.697" height="11.088" viewBox="0 0 9.697 11.088"><g transform="translate(0.849 10.488) rotate(-90)"><path d="M7.5,18h9.888" transform="translate(-7.5 -14)" fill="none" stroke="%23222" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2"/><path d="M18,7.5l4,4-4,4" transform="translate(-12.112 -7.5)" fill="none" stroke="%23222" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2"/></g></svg>') center/contain no-repeat;
}

.fixed-scope-technology__button:hover {
  background: #000000;
}

.fixed-scope-technology__button:hover span {
  color: #ffffff;
}

.fixed-scope-technology__button:hover::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="9.697" height="11.088" viewBox="0 0 9.697 11.088"><g transform="translate(0.849 10.488) rotate(-90)"><path d="M7.5,18h9.888" transform="translate(-7.5 -14)" fill="none" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2"/><path d="M18,7.5l4,4-4,4" transform="translate(-12.112 -7.5)" fill="none" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2"/></g></svg>');
}

.fixed-scope-technology__button.is-show-more::after {
  transform: rotate(0deg);
}

.fixed-scope-technology__width90 {
  width: 90px;
}

.fixed-scope-technology__width80 {
  width: 80px;
}

.fixed-scope-technology__width60 {
  width: 60px;
}

.fixed-scope-technology__height36 {
  height: 36px;
}

.fixed-scope-technology__height32 {
  height: 32px;
}

.fixed-scope-technology__height24 {
  height: 24px;
}

.fixed-scope-technology__height21 {
  height: 21px;
}

.fixed-scope-technology__height20 {
  height: 20px;
}

.fixed-scope-technology__height18 {
  height: 18px;
}

.fixed-scope-technology__height16 {
  height: 16px;
}

.fixed-scope-technology__height12 {
  height: 12px;
}

.fixed-scope-technology__height10 {
  height: 10px;
}

.fixed-scope-technology__height8 {
  height: 8px;
}

.fixed-scope-technology__height6 {
  height: 6px;
}

.fixed-scope-technology__height20pc {
  height: 20px;
}

.fixed-scope-about {
  padding: 50px 0 50px;
  background: #ffffff;
}

.fixed-scope-about__box {
  text-align: center;
  margin-bottom: 10px;
}

.fixed-scope-about__title {
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-size: 28px!important;
  line-height: 34px!important;
  font-weight: 700;
  color: #000000;
}

.fixed-scope-about__title span {
  color: #E60078;
}

.fixed-scope-about__description {
  max-width: 924px;
  margin: 0 auto 25px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
}

.fixed-scope-about__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.fixed-scope-about__numbers {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding: 0 20px;
}

.fixed-scope-about__number-card {
  width: 19.1%;
  max-width: 194px;
}

.fixed-scope-about__number-copy {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
  text-align: left;
}

.fixed-scope-about__number-copy span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  line-height: 42px;
  font-weight: 800;
  color: #000000;
  transition: color 1s ease;
}

.fixed-scope-about__number-card:hover .fixed-scope-about__number-copy span {
  color: #E60078;
}

.fixed-scope-faq {
  padding: 40px 0 50px;
  background: #F9FAFD;
}

.fixed-scope-faq__box {
  width: 100%;
}

.fixed-scope-faq__title {
  margin: 0 0 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 28px!important;
  line-height: 36px!important;
  font-weight: 700;
  color: #222222;
}

.fixed-scope-faq__title span {
  color: #E60078;
}

.fixed-scope-faq__accordion {
  max-width: 770px;
  margin: 0 auto;
}

.fixed-scope-faq__item {
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 6px;
  background: #E4E7EE;
}

.fixed-scope-faq__item:last-child {
  margin-bottom: 0;
}

.fixed-scope-faq__button {
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  line-height: 20px;
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.fixed-scope-faq__header {
  display: flex;
}

.fixed-scope-faq__button h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px!important;
  line-height: 20px!important;
  font-weight: 400;
  color: #222222;
  text-transform: none;
}

.fixed-scope-faq__button.open h3 {
  font-weight: 600;
}

.fixed-scope-faq__button:hover,
.fixed-scope-faq__button:focus {
  background: transparent;
  color: inherit;
}

.fixed-scope-faq__icon {
  display: flex;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.fixed-scope-faq__icon path {
  stroke: #000000;
}

.fixed-scope-faq__button.open .fixed-scope-faq__icon {
  transform: rotate(180deg);
}

.fixed-scope-faq__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px 0 0;
  border: none;
  box-shadow: none;
  transition: max-height 0.3s ease-out;
}

.fixed-scope-faq__content p,
.fixed-scope-faq__content span {
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #222222;
}

.fixed-scope-faq__content p {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .fixed-scope-page__container {
    width: min(1170px, calc(100% - 24px));
  }

  .fixed-scope-hero {
    padding: 28px 0 40px;
  }

  .fixed-scope-hero__box {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 20px;
  }

  .fixed-scope-hero__leftside,
  .fixed-scope-hero__rightside {
    width: 100%;
  }

  .fixed-scope-hero__media {
    max-width: 320px;
    max-height: 320px;
    margin: auto;
  }

  .fixed-scope-hero__text {
    max-width: none;
    margin-bottom: 20px;
  }

  .fixed-scope-hero__title {
    font-size: 28px!important;
    line-height: 36px!important;
  }

  .fixed-scope-hero__eyebrow {
    margin-bottom: 12px;
    font-size: 32px;
  }

  .fixed-scope-hero__description {
    font-size: 15px;
    line-height: 20px;
  }

  .fixed-scope-hero__description p {
    margin-bottom: 12px;
  }

  .fixed-scope-hero__actions {
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .fixed-scope-hero__button-primary,
  .fixed-scope-hero__button-secondary {
    margin-right: 0;
  }

  .fixed-scope-hero__button-secondary a,
  .fixed-scope-hero__button-primary a {
    width: auto;
    min-width: 0;
    padding: 0 18px;
  }

  .fixed-scope-hero__reviews {
    flex-basis: 100%;
    gap: 12px;
  }

  .fixed-scope-hero__reviews-copy p {
    margin-bottom: 4px;
  }

  .fixed-scope-hero__benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fixed-scope-hero__benefit span {
    font-size: 15px;
    line-height: 20px;
  }

  .fixed-scope-hero__benefit-info {
    margin-left: 8px;
  }

  .fixed-scope-hero__benefit-tooltip {
    left: auto;
    right: 0;
    width: min(260px, calc(100vw - 40px));
    transform: translateY(8px);
  }

  .fixed-scope-hero__benefit-tooltip::after {
    left: auto;
    right: 10px;
    transform: rotate(45deg);
  }

  .fixed-scope-hero__benefit-tooltip-wrap:hover .fixed-scope-hero__benefit-tooltip,
  .fixed-scope-hero__benefit-tooltip-wrap:focus-within .fixed-scope-hero__benefit-tooltip {
    transform: translateX(27%) translateY(0);
  }

  .fixed-scope-comparison {
    padding: 40px 0;
  }

  .fixed-scope-comparison__intro {
    padding-bottom: 23px;
  }

  .fixed-scope-comparison__title {
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 36px;
  }

  .fixed-scope-comparison__description {
    font-size: 15px;
    line-height: 20px;
  }

  .fixed-scope-comparison__table-wrap {
    margin: 0 -12px;
  }

  .fixed-scope-comparison__table-scroll {
    padding: 0 12px 8px;
    -webkit-overflow-scrolling: touch;
  }

  .fixed-scope-comparison__table {
    min-width: 720px;
  }

  .fixed-scope-comparison__row {
    grid-template-columns: 220px repeat(3, 150px);
  }

  .fixed-scope-comparison__cell {
    min-height: 64px;
    padding: 14px 12px;
  }

  .fixed-scope-comparison__cell--feature {
    position: sticky;
    left: 0;
    z-index: 1;
    font-size: 14px;
    line-height: 20px;
  }

  .fixed-scope-comparison__row:nth-child(odd):not(.fixed-scope-comparison__row--head) .fixed-scope-comparison__cell--feature {
    background: #F1F3F8;
  }

  .fixed-scope-comparison__row--head .fixed-scope-comparison__cell--feature,
  .fixed-scope-comparison__cell--model {
    font-size: 15px;
    line-height: 20px;
  }

  .fixed-scope-comparison__stars {
    gap: 4px;
  }

  .fixed-scope-comparison__stars img {
    width: 14px;
    height: 14px;
  }

  .fixed-scope-fit {
    padding: 40px 0 44px;
  }

  .fixed-scope-fit__intro {
    margin-bottom: 24px;
  }

  .fixed-scope-fit__cards {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    padding: 4px 0 0;
    margin: 0;
  }

  .fixed-scope-fit__card {
    flex: 0 0 auto;
    width: min(100%, 320px);
    height: 227px;
    padding: 20px 18px;
  }

  .fixed-scope-fit__card + .fixed-scope-fit__card {
    margin-left: 0;
    margin-top: -18px;
  }

  .fixed-scope-fit__card--dashed {
    height: 248px;
    align-self: center;
    width: min(100%, 350px);
  }

  .fixed-scope-fit__card-text {
    font-size: 16px;
    line-height: 22px;
    max-width: 280px
  }

  .fixed-scope-types {
    padding: 40px 0 44px;
  }

  .fixed-scope-types__intro {
    margin-bottom: 22px;
  }

  .fixed-scope-types__table {
    display: none;
  }

  .fixed-scope-types__mobile-cards {
    display: block;
  }

  .fixed-scope-types__mobile-card {
    padding: 30px 20px;
  }

  .fixed-scope-types__mobile-icon {
    margin-bottom: 20px;
  }

  .fixed-scope-types__mobile-title {
    margin-bottom: 10px;
  }

  .fixed-scope-types__mobile-description {
    font-size: 15px;
    line-height: 20px;
  }

  .fixed-scope-types__mobile-divider {
    margin: 16px 0 14px;
  }

  .fixed-scope-types__mobile-copy {
    padding-left: 20px;
    font-size: 15px;
    line-height: 20px;
  }

  .fixed-scope-types__table {
    display: none!important;
  }

  .fixed-scope-types__cell--spacer,
  .fixed-scope-types__cell--gap,
  .fixed-scope-types__cell--head {
    display: none!important;
  }

  .fixed-scope-types__cell--project,
  .fixed-scope-types__cell--ideal,
  .fixed-scope-types__cell--delivery {
    min-height: 0;
  }

  .fixed-scope-types__cell--project {
    padding: 18px 18px 12px;
    margin-top: 0;
    border: 1px solid #CCD0DB;
    border-bottom: 0;
    border-radius: 12px 12px 0 0;
    background: #ffffff;
  }

  .fixed-scope-types__cell--project.fixed-scope-types__cell--alt {
    background: #F1F3F8;
  }

  .fixed-scope-types__project-title {
    margin-bottom: 8px;
    font-size: 18px!important;
    line-height: 24px!important;
  }

  .fixed-scope-types__project-description {
    font-size: 15px;
    line-height: 20px;
  }

  .fixed-scope-types__cell--ideal,
  .fixed-scope-types__cell--delivery {
    position: relative;
    display: block;
    margin-bottom: 0;
    padding: 34px 18px 18px;
    border: 1px solid #CCD0DB;
    border-top: 0;
    background: #ffffff;
  }

  .fixed-scope-types__cell--ideal.fixed-scope-types__cell--alt,
  .fixed-scope-types__cell--delivery.fixed-scope-types__cell--alt {
    background: #F1F3F8;
  }

  .fixed-scope-types__cell--ideal::before,
  .fixed-scope-types__cell--delivery::before {
    position: absolute;
    top: 14px;
    left: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #666666;
  }

  .fixed-scope-types__cell--ideal::before {
    content: "Ideal For";
  }

  .fixed-scope-types__cell--delivery::before {
    content: "Typical Delivery";
  }

  .fixed-scope-types__cell--ideal p,
  .fixed-scope-types__cell--delivery p {
    text-align: left;
    font-size: 15px;
    line-height: 20px;
  }

  .fixed-scope-types__cell--delivery {
    margin-bottom: 16px;
    border-radius: 0 0 12px 12px;
  }

  .fixed-scope-types__cell--delivery p {
    font-weight: 600;
  }

  .fixed-scope-advantages {
    padding: 40px 0 44px;
  }

  .fixed-scope-advantages__intro {
    margin-bottom: 24px;
  }

  .fixed-scope-advantages__content {
    flex-direction: column;
    gap: 20px;
  }

  .fixed-scope-advantages__list,
  .fixed-scope-advantages__media {
    width: 100%;
  }

  .fixed-scope-advantages__list {
    padding-top: 0;
  }

  .fixed-scope-advantages__item {
    gap: 14px;
  }

  .fixed-scope-advantages__item + .fixed-scope-advantages__item {
    margin-top: 18px;
  }

  .fixed-scope-advantages__item-title {
    font-size: 18px;
    line-height: 24px;
  }

  .fixed-scope-advantages__item-description {
    font-size: 15px;
    line-height: 20px;
  }

  .fixed-scope-working-software {
    padding: 40px 0 44px;
  }

  .fixed-scope-working-software__heading {
    margin-bottom: 30px;
  }

  .fixed-scope-working-software__diagram {
    display: block;
  }

  .fixed-scope-working-software__diagram--line1 {
    margin-bottom: 0;
  }

  .fixed-scope-working-software__box {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    margin-bottom: 8px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .fixed-scope-working-software__image-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
    text-align: left;
  }

  .fixed-scope-working-software__image-box::after {
    content: "";
    display: block;
    width: 7px;
    height: 65px;
    margin-top: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="7" height="65.003" viewBox="0 0 7 65.003"><defs><linearGradient id="linear-gradient" x1="1.024" y1="0.5" x2="0" gradientUnits="objectBoundingBox"><stop offset="0" stop-color="%236e667b"/><stop offset="1" stop-color="%230b0b1e"/></linearGradient></defs><g transform="translate(2087.797 -1149.085) rotate(90)"><path d="M57.585,3.971H0V3.025H57.583L56.223,0,65,3.5,56.223,7Z" transform="translate(1149.085 2080.797)" fill="url(%23linear-gradient)"/></g></svg>') center/contain no-repeat;
  }

  .fixed-scope-working-software__diagram--line3 .fixed-scope-working-software__box--right .fixed-scope-working-software__image-box::after {
    display: none;
  }

  .fixed-scope-working-software__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 50%;
    background: #F2F2F2;
  }

  .fixed-scope-working-software__icon svg {
    width: 30px;
    height: 30px;
  }

  .fixed-scope-working-software__arrow-inline,
  .fixed-scope-working-software__arrow--top-left,
  .fixed-scope-working-software__arrow--top-right {
    display: none;
  }

  .fixed-scope-working-software__content {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .fixed-scope-working-software__content h3,
  .fixed-scope-working-software__content p {
    max-width: none;
    text-align: left;
  }

  .fixed-scope-working-software__content h3 {
    margin-bottom: 5px;
    font-size: 15px!important;
    line-height: 20px!important;
  }

  .fixed-scope-working-software__content p {
    font-size: 15px;
    line-height: 20px;
  }

  .fixed-scope-working-software__diagram--line3 {
    margin-bottom: 40px;
  }

  .fixed-scope-happy-clients {
    padding: 40px 0;
  }

  .fixed-scope-happy-clients__heading {
    margin-bottom: 24px;
  }

  .fixed-scope-happy-clients__boxes {
    display: block;
    width: 100%;
  }

  .fixed-scope-happy-clients__boxes .slick-list {
    overflow: visible;
    width: 100%;
  }

  .fixed-scope-happy-clients__boxes .slick-track {
    display: flex;
    align-items: stretch;
    padding: 3px 0;
  }

  .fixed-scope-happy-clients__box {
    width: min(calc(100vw - 56px), 320px);
    margin: 0 8px;
    padding: 28px 20px 24px;
    min-height: 260px;
    opacity: 0.45;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .fixed-scope-happy-clients__boxes .slick-current.fixed-scope-happy-clients__box::before,
  .fixed-scope-happy-clients__boxes .slick-current .fixed-scope-happy-clients__box::before {
    opacity: 1;
  }

  .fixed-scope-happy-clients__boxes .slick-center .fixed-scope-happy-clients__box,
  .fixed-scope-happy-clients__boxes .slick-center.fixed-scope-happy-clients__box {
    opacity: 1;
  }

  .fixed-scope-happy-clients__boxes .slick-cloned {
    opacity: 1;
  }

  .fixed-scope-happy-clients__box-content p {
    margin-bottom: 20px;
    min-height: 80px;
    color: #666666;
    transition: color 0.35s ease;
  }

  .fixed-scope-happy-clients__boxes .slick-active .fixed-scope-happy-clients__box-content p {
    color: #444444;
  }

  .fixed-scope-happy-clients__box--last {
    display: flex !important;
    opacity: 1;
  }

  .fixed-scope-case-studies {
    padding: 40px 0;
  }

  .fixed-scope-case-studies__tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0 -12px 24px;
    padding: 0 12px 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .fixed-scope-case-studies__tabs::-webkit-scrollbar {
    display: none;
  }

  .fixed-scope-case-studies__tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .fixed-scope-case-studies__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fixed-scope-case-studies__item-content {
    padding: 16px 16px 22px;
  }

  .fixed-scope-case-studies__item-content h3 {
    margin-bottom: 8px;
  }

  .fixed-scope-why-choose {
    padding: 40px 0;
  }

  .fixed-scope-why-choose__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fixed-scope-why-choose__row {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .fixed-scope-why-choose__right {
    margin-top: 12px;
  }

  .fixed-scope-why-choose__row--last {
    padding: 28px 18px;
  }

  .fixed-scope-why-choose__row--last h3 br {
    display: none;
  }

  .fixed-scope-technology {
    padding: 40px 0 44px;
  }

  .fixed-scope-technology__heading {
    margin-bottom: 24px;
  }

  .fixed-scope-technology__table {
    max-height: 1180px;
    overflow: hidden;
  }

  .fixed-scope-technology__table.is-more {
    max-height: 9999px;
    overflow: visible;
  }

  .fixed-scope-technology__row {
    grid-template-columns: 1fr;
  }

  .fixed-scope-technology__container,
  .fixed-scope-technology__container:nth-child(odd) {
    background: transparent;
    border: none;
  }

  .fixed-scope-technology__container {
    margin-top: 20px;
  }

  .fixed-scope-technology__container--first {
    margin-top: 0;
  }

  .fixed-scope-technology__title {
    margin-bottom: 10px;
    border: none;
    min-height: auto;
  }

  .fixed-scope-technology__title h3 {
    padding-left: 12px;
    margin-bottom: 0;
  }

  .fixed-scope-technology__title h3::before {
    display: block;
    left: 0;
    width: 2px;
    height: 16px;
  }

  .fixed-scope-technology__image-container {
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fixed-scope-technology__row--large .fixed-scope-technology__image-container {
    gap: 8px;
  }

  .fixed-scope-technology__image {
    height: 56px;
    border: 1px solid #E7EDF4;
    border-radius: 8px;
    background: #ffffff;
  }

  .fixed-scope-technology__row--large .fixed-scope-technology__image {
    height: 56px;
  }

  .fixed-scope-technology__image--empty {
    display: none;
  }

  .fixed-scope-technology__button {
    display: flex;
  }

  .fixed-scope-about {
    padding: 40px 0;
  }

  .fixed-scope-about__box {
    text-align: center;
    margin-bottom: 24px;
  }

  .fixed-scope-about__title {
    margin-bottom: 10px;
    font-size: 28px!important;
    line-height: 36px!important;
  }

  .fixed-scope-about__title span {
    display: inline;
  }

  .fixed-scope-about__description {
    margin-bottom: 20px;
    text-align: center;
  }

  .fixed-scope-about__numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0;
    margin-top: 20px;
  }

  .fixed-scope-about__number-card {
    width: auto;
    max-width: none;
    margin-bottom: 0;
    padding: 16px 14px;
    border: 1px solid #E7EDF4;
    border-radius: 12px;
    background: #ffffff;
  }

  .fixed-scope-about__number-card:last-child {
    display: block;
    grid-column: 1 / -1;
  }

  .fixed-scope-about__number-copy span {
    margin-bottom: 6px;
    font-size: 28px;
    line-height: 36px;
  }

  .fixed-scope-faq {
    padding: 40px 0;
  }

  .fixed-scope-faq__box {
    padding: 0;
  }

  .fixed-scope-faq__title {
    margin-bottom: 18px;
  }

  .fixed-scope-faq__accordion {
    padding: 0;
  }

  .fixed-scope-faq__item {
    margin-bottom: 10px;
    padding: 14px 16px;
    border-radius: 10px;
  }

  .fixed-scope-faq__content {
    padding-right: 0;
  }

  .fixed-scope-faq__content p {
    margin-top: 8px;
  }
}
