/* Static services page */
.services-page {
  --services-blue: #126fe3;
  --services-blue-dark: #0755b8;
  --services-ink: #101926;
  --services-muted: #627085;
  --services-line: #dfe8f3;
  --services-soft: #f4f8fc;
  --services-radius: 8px;
  position: relative;
  float: none;
  min-height: 1px;
  margin-top: 0;
  padding-right: 0;
  padding-left: 0;
  color: var(--services-ink);
  background: linear-gradient(180deg, #fff 0%, #f5f8fc 52%, #fff 100%);
}

.services-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.services-page > .services-page__container {
  padding-top: 25px;
  padding-bottom: 60px;
}

.services-page a {
  text-decoration: none;
}

.services-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.services-page-btn:hover,
.services-page-btn:focus {
  color: #fff;
  transform: translateY(-1px);
}

.services-page-btn--primary {
  background: linear-gradient(135deg, var(--services-blue), var(--services-blue-dark));
  border-color: rgba(18, 111, 227, .9);
  box-shadow: 0 14px 32px rgba(18, 111, 227, .25);
}

.services-page-btn--primary:hover,
.services-page-btn--primary:focus {
  background: linear-gradient(135deg, #2384ff, var(--services-blue));
  border-color: #2384ff;
}

.services-page-services__head h2,
.services-page-help h2 {
  margin: 9px 0 12px;
  color: var(--services-ink);
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.22;
}

.services-page-categories {
  margin-bottom: 24px;
}

.services-page-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.services-page-tabs button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 16px;
  color: #30445d;
  background: #fff;
  border: 1px solid #dfe8f3;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.services-page-tabs::-webkit-scrollbar {
  height: 6px;
}

.services-page-tabs::-webkit-scrollbar-track {
  background: transparent;
}

.services-page-tabs::-webkit-scrollbar-thumb {
  background: rgba(18, 111, 227, .18);
  border-radius: 999px;
}

.services-page-tabs button:after {
  content: "\f107";
  display: none;
  color: currentColor;
  font-family: FontAwesome;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-1px) scale(.72);
  transition: opacity .2s ease, transform .2s ease;
}

.services-page-tabs button:hover,
.services-page-tabs button:focus,
.services-page-tabs button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--services-blue), var(--services-blue-dark));
  border-color: rgba(18, 111, 227, .9);
  box-shadow: 0 10px 24px rgba(18, 111, 227, .22);
}

.services-page-tabs button.is-active:after {
  display: inline-block;
  opacity: 1;
  transform: translateY(-1px) scale(1);
}

.services-page-tabs button:hover,
.services-page-tabs button:focus {
  transform: translateY(-1px);
}

.services-page-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.services-page-category-grid[hidden],
.services-page-services[hidden] {
  display: none;
}

.services-page-category {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 304px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dde7f2;
  border-radius: var(--services-radius);
  box-shadow: 0 14px 34px rgba(18, 35, 56, .055);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.services-page-category:after {
  content: "\f00c";
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--services-blue), var(--services-blue-dark));
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(18, 111, 227, .22);
  font-family: FontAwesome;
  font-size: 10px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-4px) scale(.82);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

.services-page-category:hover,
.services-page-category.is-active {
  transform: translateY(-2px);
  border-color: rgba(18, 111, 227, .36);
  box-shadow: 0 20px 44px rgba(18, 35, 56, .1);
}

.services-page-category.is-active:after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.services-page-category__top {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 24px 20px 12px;
}

.services-page-category__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--services-blue);
  background: #f4f8fc;
  border: 1px solid rgba(18, 111, 227, .16);
  border-radius: 7px;
  font-size: 26px;
}

.services-page-category h3 {
  margin: 0;
  color: #101926;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.services-page-category ul {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0 22px 22px;
  color: #405066;
  font-size: 14px;
  list-style: none;
  line-height: 1.4;
}

.services-page-category li,
.services-page-service li {
  position: relative;
  padding-left: 18px;
}

.services-page-category li:before,
.services-page-service li:before {
  content: "";
  position: absolute;
  left: 1px;
  top: .62em;
  width: 5px;
  height: 5px;
  background: var(--services-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(18, 111, 227, .08);
}

.services-page-category li a,
.services-page-category li a:visited {
  color: #0b66c3;
  font-weight: 700;
  transition: color .2s ease;
}

.services-page-category__pending {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #7b8798;
}

.services-page-category__pending:before {
  background: #a8b3c2;
  box-shadow: 0 0 0 4px rgba(141, 154, 170, .1);
}

.services-page-category__pending span:first-child {
  min-width: 0;
}

.services-page-dev-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 8px;
  color: #526275;
  background: #f1f5f9;
  border: 1px solid #d9e2ec;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.services-page-category li a:hover,
.services-page-category li a:focus {
  color: #0f4f9a;
}

.services-page-category__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: auto;
  border-top: 1px solid #e6edf5;
}

.services-page-category__bottom span,
.services-page-category__bottom a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 20px;
  color: var(--services-blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.services-page-category__bottom span {
  border-right: 1px solid #e6edf5;
}

.services-page-category__bottom a {
  justify-content: space-between;
  gap: 10px;
}

.services-page-category__bottom a:hover,
.services-page-category__bottom a:focus {
  color: var(--services-blue-dark);
}

.services-page-services {
  margin-top: 0;
  margin-bottom: 32px;
  scroll-margin-top: 24px;
}

.services-page-services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.services-page-services__head h2 {
  margin-bottom: 10px;
}

.services-page-services__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 16px;
  color: #36516f;
  background: #fff;
  border: 1px solid #dfe8f3;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.services-page-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.services-page-service {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  color: var(--services-ink);
  background:
    linear-gradient(135deg, rgba(18, 111, 227, .07), rgba(255, 255, 255, 0) 44%),
    #fff;
  border: 1px solid #dfe8f3;
  border-radius: var(--services-radius);
  box-shadow: 0 14px 34px rgba(18, 35, 56, .065);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.services-page-service:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--services-blue), #00adef 54%, rgba(229, 0, 36, .78) 100%);
}

.services-page-service:hover,
.services-page-service:focus {
  transform: translateY(-3px);
  color: var(--services-ink);
  border-color: rgba(18, 111, 227, .36);
  box-shadow: 0 24px 48px rgba(18, 35, 56, .12);
}

.services-page-service--disabled {
  cursor: default;
  color: #526275;
  background:
    linear-gradient(135deg, rgba(141, 154, 170, .1), rgba(255, 255, 255, 0) 44%),
    #fbfdff;
  border-color: #e1e8f0;
  box-shadow: 0 12px 28px rgba(18, 35, 56, .05);
}

.services-page-service--disabled:before {
  background: linear-gradient(90deg, #8d9aaa, #c3ccd8);
}

.services-page-service--disabled:hover,
.services-page-service--disabled:focus {
  transform: none;
  color: #526275;
  border-color: #e1e8f0;
  box-shadow: 0 12px 28px rgba(18, 35, 56, .05);
}

.services-page-service--disabled .services-page-service__icon {
  color: #7f91a8;
  background: #f4f7fa;
  border-color: #d9e2ec;
}

.services-page-service--disabled h3 {
  color: #2f3b4b;
}

.services-page-service[hidden] {
  display: none;
}

.services-page-service__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  color: var(--services-blue);
  background: #f4f8fc;
  border: 1px solid rgba(18, 111, 227, .16);
  border-radius: 7px;
  font-size: 23px;
}

.services-page-service__tag {
  margin-bottom: 7px;
  color: #7b8798;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.services-page-service h3 {
  margin: 0 0 10px;
  color: var(--services-ink);
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.services-page-service p {
  margin: 0 0 14px;
  color: #526275;
  font-size: 14px;
  line-height: 1.62;
}

.services-page-service ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding-left: 0;
  color: #43556d;
  font-size: 13px;
  list-style: none;
  line-height: 1.45;
}

.services-page-service__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--services-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.services-page-dev-badge--service {
  align-self: flex-start;
  margin-top: auto;
}

.services-page-info {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 36px;
  align-items: stretch;
  margin-top: 34px;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 111, 227, .07) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid #d7e5f4;
  box-shadow: 0 18px 44px rgba(18, 35, 56, .09);
}

.services-page-info:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--services-blue), rgba(18, 111, 227, .12));
}

.services-page-info__content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 720px;
}

.services-page-info__content > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #0959be;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.25;
  text-transform: none;
}

.services-page-info__content > span:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--services-blue);
}

.services-page-info__content p {
  margin: 0;
  color: #2c3f58;
  font-size: 16px;
  line-height: 1.82;
}

.services-page-info__points {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  counter-reset: info-step;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(18, 111, 227, .08), rgba(255, 255, 255, 0) 48%),
    rgba(255, 255, 255, .82);
  border: 1px solid #dce9f6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), 0 14px 30px rgba(18, 35, 56, .06);
}

.services-page-info__points div {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 4px 14px;
  align-items: center;
  min-height: 72px;
  padding: 15px 38px 15px 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid #e2ecf6;
  border-bottom: 1px solid #e2ecf6;
  box-shadow: 0 10px 22px rgba(18, 35, 56, .045);
}

.services-page-info__points div + div {
  margin-top: 10px;
}

.services-page-info__points div:last-child {
  border-bottom: 1px solid #e2ecf6;
}

.services-page-info__points div:after {
  counter-increment: info-step;
  content: "0" counter(info-step);
  position: absolute;
  top: 17px;
  right: 14px;
  color: rgba(18, 111, 227, .32);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.services-page-info__points i {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--services-blue);
  background: #fff;
  border: 1px solid rgba(18, 111, 227, .18);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(18, 111, 227, .12);
}

.services-page-info__points strong {
  grid-area: title;
  color: var(--services-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.services-page-info__points span {
  grid-area: text;
  color: var(--services-muted);
  font-size: 12px;
  line-height: 1.45;
}

.services-page-help {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  padding: 28px 34px;
  background:
    linear-gradient(135deg, rgba(18, 111, 227, .12), rgba(255, 255, 255, 0) 48%),
    #f6faff;
  border: 1px solid #dbe8f5;
  border-radius: var(--services-radius);
  box-shadow: 0 14px 34px rgba(18, 35, 56, .055);
}

.services-page-help__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: linear-gradient(135deg, var(--services-blue), var(--services-blue-dark));
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(18, 111, 227, .22);
  font-size: 22px;
}

.services-page-help h2 {
  margin: 0 0 8px;
  color: var(--services-ink);
  font-size: 20px;
}

.services-page-help p {
  max-width: 760px;
  margin: 0;
  color: #526275;
  font-size: 14px;
  line-height: 1.65;
}

.services-page-trust {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
  margin-top: 32px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid #dfe8f3;
  border-radius: var(--services-radius);
  box-shadow: 0 14px 34px rgba(18, 35, 56, .055);
}

.services-page-trust div {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 5px 14px;
  align-items: center;
  min-width: 0;
  padding: 0 22px;
  border-right: 1px solid #e4ecf4;
}

.services-page-trust div:first-child {
  padding-left: 0;
}

.services-page-trust div:last-child {
  padding-right: 0;
  border-right: 0;
}

.services-page-trust i {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--services-blue);
  background: #f4f8fc;
  border: 1px solid rgba(18, 111, 227, .16);
  border-radius: 50%;
  font-size: 25px;
}

.services-page-trust strong {
  grid-area: title;
  min-width: 0;
  color: var(--services-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.services-page-trust span {
  grid-area: text;
  min-width: 0;
  color: var(--services-muted);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 1199px) {
  .services-page-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 991px) {
  .services-page-category-grid,
  .services-page-service-grid,
  .services-page-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page-trust div:nth-child(2) {
    border-right: 0;
  }

  .services-page-trust div:nth-child(-n+2) {
    border-bottom: 1px solid #e2eaf4;
  }

  .services-page-services__head,
  .services-page-help,
  .services-page-info {
    grid-template-columns: 1fr;
  }

  .services-page-help {
    justify-items: start;
  }

  .services-page-trust div {
    padding: 18px;
  }
}

@media (max-width: 767px) {
  .services-page {
    margin-top: 0;
  }

  .services-page__container {
    padding-right: 12px;
    padding-left: 12px;
  }

  .services-page > .services-page__container {
    padding-top: 25px;
    padding-bottom: 42px;
  }

  .services-page-info__content p {
    font-size: 14px;
    line-height: 1.68;
  }

  .services-page-category-grid,
  .services-page-service-grid,
  .services-page-trust {
    grid-template-columns: 1fr;
  }

  .services-page-category-grid,
  .services-page-service-grid {
    width: 100%;
  }

  .services-page-trust {
    max-width: 100%;
    padding: 18px 20px;
    overflow: hidden;
  }

  .services-page-trust div,
  .services-page-trust div:nth-child(-n+2) {
    grid-template-columns: 48px minmax(0, 1fr);
    width: 100%;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #e2eaf4;
  }

  .services-page-trust div:first-child {
    padding-top: 0;
  }

  .services-page-trust div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .services-page-tabs {
    margin-right: -12px;
    margin-left: -12px;
    padding: 0 12px 4px;
  }

  .services-page-category,
  .services-page-service {
    min-height: 0;
  }

  .services-page-category__top {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 20px 18px 10px;
  }

  .services-page-category__icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .services-page-category h3,
  .services-page-service h3,
  .services-page-help h2,
  .services-page-services__head h2 {
    font-size: 22px;
  }

  .services-page-category__bottom {
    grid-template-columns: 1fr;
  }

  .services-page-category__bottom span {
    min-height: 46px;
    border-right: 0;
    border-bottom: 1px solid #e6edf5;
  }

  .services-page-category__bottom a {
    min-height: 50px;
  }

  .services-page-help,
  .services-page-info {
    padding: 20px;
  }

  .services-page-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .services-page-service {
    padding: 20px;
  }
}

/* Full service page */
.service-full {
  --service-blue: #126fe3;
  --service-blue-dark: #0755b8;
  --service-ink: #101926;
  --service-muted: #627085;
  --service-line: #e5ebf2;
  --service-soft: #f5f8fc;
  position: relative;
  float: none;
  min-height: 1px;
  margin-top: -50px;
  padding-right: 0;
  padding-left: 0;
  color: var(--service-ink);
}

.service-full__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.service-full > .service-full__container {
  margin-top: 30px;
}

.service-full-hero {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 52px 0 40px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 14, 24, .98) 0%, rgba(9, 24, 39, .98) 48%, rgba(4, 13, 22, .98) 100%);
}

.service-full-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .22;
  pointer-events: none;
}

.service-full-hero:after {
  content: "";
  position: absolute;
  inset: -28% -18%;
  z-index: 0;
  background:
    linear-gradient(96deg, transparent 0%, transparent 35%, rgba(0, 82, 165, .24) 38%, rgba(0, 82, 165, .045) 42%, transparent 46%),
    linear-gradient(96deg, transparent 0%, transparent 43%, rgba(0, 173, 239, .2) 46%, rgba(0, 173, 239, .04) 50%, transparent 54%),
    linear-gradient(96deg, transparent 0%, transparent 51%, rgba(229, 0, 36, .18) 54%, rgba(229, 0, 36, .035) 58%, transparent 62%),
    linear-gradient(90deg, rgba(18, 111, 227, .12) 0%, rgba(18, 111, 227, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, 0) 42%);
  filter: blur(20px);
  opacity: .9;
  pointer-events: none;
}

.service-full-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 42%);
  gap: 40px;
  align-items: center;
}

.service-full-hero__content {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0;
  color: #fff;
}

.service-full-hero__category {
  margin-bottom: 12px;
  color: #3b9bff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-full-hero__category a {
  color: inherit;
}

.service-full-hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.service-full-hero p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.75;
}

.service-full-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.service-full-hero__media {
  position: relative;
  align-self: center;
}

.service-full-hero__media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d1722;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .32), 0 0 0 1px rgba(18, 111, 227, .12);
}

.service-full-hero__media-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 38%, rgba(0, 0, 0, .18) 100%);
  pointer-events: none;
}

.service-full-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.04);
}

.service-full-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.service-full-btn:hover,
.service-full-btn:focus {
  color: #fff;
  transform: translateY(-1px);
}

.service-full-btn--primary {
  background: linear-gradient(135deg, var(--service-blue), var(--service-blue-dark));
  border-color: rgba(18, 111, 227, .9);
  box-shadow: 0 14px 32px rgba(18, 111, 227, .25);
}

.service-full-btn--primary:hover,
.service-full-btn--primary:focus {
  background: linear-gradient(135deg, #2384ff, var(--service-blue));
  border-color: #2384ff;
}

.service-full-btn--ghost {
  background: rgba(9, 18, 30, .32);
}

.service-full-btn--ghost:hover,
.service-full-btn--ghost:focus {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .62);
}

.service-full__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 28px;
  align-items: start;
}

.service-full-card,
.service-full-widget {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border: 1px solid var(--service-line);
  border-radius: 0;
  box-shadow: 0 14px 38px rgba(18, 35, 56, .08);
}

.service-full-content {
  position: relative;
  padding: 34px 32px;
  overflow: hidden;
}

.service-full-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--service-blue), #00adef 46%, #e50024 100%);
}

.service-full-story {
  color: #2c394a;
  font-size: 15px;
  line-height: 1.76;
  letter-spacing: 0;
}

.service-full-story > *:first-child {
  margin-top: 0;
}

.service-full-story > *:last-child {
  margin-bottom: 0;
}

.service-full-story h2,
.service-full-story h3,
.service-full-story h4 {
  margin: 28px 0 13px;
  color: var(--service-ink);
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.32;
}

.service-full-story h2:first-child,
.service-full-story h3:first-child,
.service-full-story h4:first-child,
.service-full-story p:first-child {
  margin-top: 0;
}

.service-full-story h2 {
  padding-left: 14px;
  border-left: 3px solid var(--service-blue);
  font-size: 23px;
}

.service-full-story h3 {
  padding-left: 12px;
  border-left: 2px solid rgba(18, 111, 227, .55);
  font-size: 19px;
}

.service-full-story h4 {
  font-size: 16px;
}

.service-full-story p {
  margin: 0 0 15px;
  color: #2c394a;
  font-size: 15px;
  line-height: 1.76;
}

.service-full-story p strong:first-child {
  color: #0a141f;
  font-weight: 800;
}

.service-full-story a {
  color: var(--service-blue);
  font-weight: 700;
  text-decoration: none;
}

.service-full-story a:hover,
.service-full-story a:focus {
  color: var(--service-blue-dark);
  text-decoration: underline;
}

.service-full-story ul,
.service-full-story ol {
  counter-reset: service-content-list;
  margin: 4px 0 18px;
  padding-left: 0;
}

.service-full-story li {
  position: relative;
  min-height: 24px;
  margin-bottom: 7px;
  padding-left: 36px;
  color: #2c394a;
  font-size: 14px;
  line-height: 1.65;
  list-style: none;
}

.service-full-story ul > li:before {
  content: "";
  position: absolute;
  left: 8px;
  top: .72em;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #2c8dff, var(--service-blue-dark));
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(18, 111, 227, .09);
}

.service-full-story ol > li {
  counter-increment: service-content-list;
  color: #425066;
}

.service-full-story ol > li:before {
  content: counter(service-content-list);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--service-blue-dark);
  background: linear-gradient(135deg, rgba(18, 111, 227, .1), rgba(18, 111, 227, .04));
  border: 1px solid rgba(18, 111, 227, .16);
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(18, 111, 227, .08);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.service-full-story li > ul,
.service-full-story li > ol {
  margin-top: 8px;
  margin-bottom: 4px;
}

.service-full-story blockquote,
.service-full-story table,
.service-full-story pre {
  margin: 22px 0;
}

.service-full-story blockquote {
  padding: 18px 20px;
  color: #203044;
  background: linear-gradient(135deg, #f4f8ff, #fff);
  border-left: 3px solid var(--service-blue);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  line-height: 1.75;
}

.service-full-story img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-full-story table {
  width: 100%;
  border-collapse: collapse;
  background: var(--service-soft);
  border-radius: 8px;
  overflow: hidden;
}

.service-full-story th,
.service-full-story td {
  padding: 12px 14px;
  border: 1px solid #dce5ef;
  color: #263241;
  font-size: 13px;
  line-height: 1.5;
  vertical-align: top;
}

.service-full-story th {
  color: var(--service-ink);
  background: #eef5fd;
  font-weight: 700;
}

.service-full-story > div {
  max-width: 100%;
}

.service-full-contact-strip {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 30px;
  padding: 20px;
  color: #1c2b3d;
  background:
    linear-gradient(135deg, rgba(18, 111, 227, .08), rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, #fff 0%, #f6f9fe 100%);
  border: 1px solid #d9e5f2;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.service-full-contact-strip__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--service-blue);
  background: #fff;
  border: 1px solid rgba(18, 111, 227, .24);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(18, 111, 227, .12);
}

.service-full-contact-strip__icon i {
  font-size: 20px;
}

.service-full-contact-strip__label {
  display: block;
  margin-bottom: 4px;
  color: #6a7788;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-full-contact-strip__line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  color: var(--service-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.service-full-contact-strip__phone {
  color: var(--service-blue);
  font-weight: 800;
  white-space: nowrap;
}

.service-full-contact-strip__phone:hover,
.service-full-contact-strip__phone:focus {
  color: var(--service-blue-dark);
}

.service-full-contact-strip__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 11px;
}

.service-full-contact-strip__channels a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  color: var(--channel-color);
  background: var(--channel-bg);
  border: 1px solid var(--channel-border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-full-contact-strip__channel--whatsapp {
  --channel-color: #128c4a;
  --channel-bg: rgba(37, 211, 102, .1);
  --channel-border: rgba(37, 211, 102, .26);
  --channel-hover-bg: rgba(37, 211, 102, .16);
  --channel-shadow: rgba(37, 211, 102, .12);
}

.service-full-contact-strip__channel--viber {
  --channel-color: #665cac;
  --channel-bg: rgba(115, 96, 242, .1);
  --channel-border: rgba(115, 96, 242, .26);
  --channel-hover-bg: rgba(115, 96, 242, .16);
  --channel-shadow: rgba(115, 96, 242, .12);
}

.service-full-contact-strip__channel--telegram {
  --channel-color: #168acd;
  --channel-bg: rgba(42, 171, 238, .1);
  --channel-border: rgba(42, 171, 238, .26);
  --channel-hover-bg: rgba(42, 171, 238, .16);
  --channel-shadow: rgba(42, 171, 238, .12);
}

.service-full-contact-strip__channels a:hover,
.service-full-contact-strip__channels a:focus {
  transform: translateY(-1px);
  background: var(--channel-hover-bg);
  border-color: var(--channel-border);
  box-shadow: 0 10px 20px var(--channel-shadow);
}

.service-full-contact-strip__channels i {
  font-size: 14px;
}

.service-full__aside {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 24px;
  margin-top: 0;
}

.service-full-widget {
  padding: 26px 22px;
}

.service-full-widget h3 {
  margin: 0 0 20px;
  color: var(--service-ink);
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-full-widget h3:after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 14px;
  background: var(--service-blue);
}

.service-full-related {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 111, 227, .1) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #fff 0%, #f4f8fd 100%);
  border-color: #dbe7f4;
}

.service-full-related:after {
  content: "";
  position: absolute;
  top: 42px;
  right: -34px;
  width: 138px;
  height: 1px;
  background: linear-gradient(90deg, rgba(18, 111, 227, 0), rgba(18, 111, 227, .3), rgba(223, 31, 45, .18));
  transform: rotate(-28deg);
  transform-origin: right center;
}

.service-full-related > * {
  position: relative;
  z-index: 1;
}

.service-full-related__list .post {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 10px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid #e4ebf3;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(18, 35, 56, .05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-full-related__list .post + .post {
  margin-top: 12px;
}

.service-full-related__list .post:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 111, 227, .3);
  box-shadow: 0 14px 28px rgba(18, 35, 56, .1);
}

.service-full-related__list .post-thumb {
  position: relative;
  width: 88px;
  height: 72px;
  overflow: hidden;
  border-radius: 6px;
  background: #dbe5ef;
}

.service-full-related__list .post-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.service-full-related__list .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.service-full-related__list .post:hover .post-thumb img {
  transform: scale(1.04);
}

.service-full-related__list h4 {
  margin: 0;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.service-full-related__list h4 a {
  color: var(--service-ink);
}

.service-full-related__list h4 a:hover,
.service-full-related__list h4 a:focus {
  color: var(--service-blue);
}

.service-full-related__list h4 a:after {
  content: "\f105";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 9px;
  color: var(--service-blue);
  background: rgba(18, 111, 227, .08);
  border: 1px solid rgba(18, 111, 227, .14);
  border-radius: 50%;
  font-family: "FontAwesome";
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.service-full-consult {
  color: #203247;
  background:
    linear-gradient(135deg, rgba(42, 148, 255, .18) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, #f4faff 0%, #eaf5ff 100%);
  border-color: #cbe3fb;
  box-shadow: 0 20px 46px rgba(18, 111, 227, .13);
}

.service-full-consult h3 {
  color: var(--service-ink);
  margin-bottom: 18px;
  text-transform: none;
}

.service-full-consult h3:after {
  display: none;
}

.service-full-consult p {
  margin: 0 0 22px;
  color: #526275;
  font-size: 14px;
  line-height: 1.75;
}

.service-full-consult__message,
.service-full-consult__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.service-full-consult__message {
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--service-blue), var(--service-blue-dark));
  box-shadow: 0 14px 28px rgba(18, 111, 227, .18);
}

.service-full-consult__phone {
  color: var(--service-blue-dark);
  border: 1px solid rgba(18, 111, 227, .22);
  background: rgba(255, 255, 255, .72);
}

.service-full-consult__message:hover,
.service-full-consult__message:focus,
.service-full-consult__phone:hover,
.service-full-consult__phone:focus {
  color: #fff;
  transform: translateY(-1px);
}

.service-full-consult__message:hover,
.service-full-consult__message:focus {
  background: linear-gradient(135deg, #2384ff, var(--service-blue));
}

.service-full-consult__phone:hover,
.service-full-consult__phone:focus {
  background: var(--service-blue);
  border-color: var(--service-blue);
}

@media (max-width: 1199px) {
  .service-full-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 40%);
    gap: 32px;
  }

  .service-full__layout {
    grid-template-columns: minmax(0, 1fr) 270px;
  }
}

@media (max-width: 991px) {
  .service-full-hero {
    padding: 52px 0 48px;
  }

  .service-full-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-full-hero__media {
    max-width: 720px;
  }

  .service-full-hero h1 {
    font-size: 34px;
  }

  .service-full__layout {
    grid-template-columns: 1fr;
  }

  .service-full__aside {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .service-full {
    margin-top: -50px;
  }

  .service-full__container {
    padding-right: 12px;
    padding-left: 12px;
  }

  .service-full-hero {
    padding: 48px 0 36px;
  }

  .service-full-hero__category {
    font-size: 12px;
  }

  .service-full-hero h1 {
    font-size: 31px;
  }

  .service-full-hero p {
    font-size: 14px;
    line-height: 1.65;
  }

  .service-full-btn {
    width: 100%;
  }

  .service-full-content,
  .service-full-widget {
    padding: 22px 18px;
  }

  .service-full-story {
    font-size: 14px;
    line-height: 1.68;
  }

  .service-full-story h2 {
    font-size: 20px;
  }

  .service-full-story h3 {
    font-size: 18px;
  }

  .service-full-story p {
    font-size: 14px;
    line-height: 1.68;
  }

  .service-full-story li {
    padding-left: 34px;
    font-size: 13px;
    line-height: 1.62;
  }

  .service-full__aside {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .service-full-hero h1 {
    font-size: 27px;
  }

  .service-full-hero__grid {
    gap: 26px;
  }

  .service-full-hero__media-frame {
    border-radius: 7px;
  }

  .service-full-contact-strip {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 24px;
    padding: 15px;
  }

  .service-full-contact-strip__icon {
    width: 42px;
    height: 42px;
  }

  .service-full-contact-strip__icon i {
    font-size: 17px;
  }

  .service-full-contact-strip__label {
    margin-bottom: 3px;
    font-size: 10px;
  }

  .service-full-contact-strip__line {
    gap: 5px;
    font-size: 14px;
  }

  .service-full-contact-strip__channels {
    gap: 6px;
    margin-top: 9px;
  }

  .service-full-contact-strip__channels a {
    min-height: 30px;
    padding: 0 9px;
    font-size: 11px;
  }

  .service-full-related__list .post {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .service-full-related__list .post-thumb {
    width: 86px;
    height: 70px;
  }
}
