.intro {
}

.intro__box {
    display: flex;
    justify-content: space-between;
}

.intro__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 628px;
    position: relative;
    padding-top: 41px;
}

.intro__bg-stars {
    position: absolute;
    top: -88px;
    left: 0;
    z-index: -1;
}

.intro__left-wrapper {
    margin-bottom: 104px;
}

.intro__trust-pilot {
    display: flex;
    margin-bottom: 24px;
}

.intro__title,
.intro__description {
    text-align: left;
}

.intro__title {
    color: #FFF;
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 80px;
    margin-bottom: 24px;
}

.intro__description {
    margin-bottom: 40px;
}

.intro__links {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.intro__link.login {
    background: none;
}

.intro__link.login:hover::after {
    opacity: 1;
}

.intro__link.login::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(225deg, #8290FF 0%, #D1ADFF 37.81%, #8290FF 100%);
    mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
    mask-composite: exclude;
}

.intro__stats {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 80px;
    row-gap: 30px;
}

.intro__stat-box {
    display: flex;
    align-items: center;
}

.intro__stat-img {
    display: flex;
}

.intro__stat-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #0F0F0F;
}

.intro__stat-img + .intro__stat-img {
    margin-left: -15px;
}

.intro__stat-value {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    margin-top: 16px;
}

.intro__stat-key {
    color: #797E86;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.intro__stat-stars {
    display: flex;
    align-items: center;
    min-height: 40px;
}

.intro__stat-star {
    display: flex;
}

.intro__stat-icon {
    display: flex;
    align-items: center;
    min-height: 40px;
}

.intro__right {
    width: fit-content;
    position: relative;
}

.intro__phone-bg {
    display: flex;
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.intro__phone-bg img {
    width: 850px;
    height: auto;
}

.intro__phone {
    display: flex;
}

.intro__phone img {
    width: 619px;
    height: auto;
}

@media (max-width: 1250px) {
    .intro__stats {
        column-gap: 30px;
    }

    .intro__box {
        align-items: center;
    }

    .intro__left {
        padding-top: 0;
    }

    .intro__phone-bg {
        top: -110px;
    }

    .intro__phone-bg img {
        width: 700px;
    }

    .intro__phone img {
        width: 500px;
    }
}

@media (max-width: 1080px) {
    .intro__box {
        flex-direction: column;
        row-gap: 30px;
        text-align: center;
    }

    .intro__bg-stars {
        transform: rotate(311deg);
    }

    .intro__left {
        align-items: center;
        max-width: 100%;
    }

    .intro__title,
    .intro__description {
        text-align: center;
    }

    .intro__trust-pilot {
        justify-content: center;
    }

    .intro__stats {
        justify-content: center;
    }

    .intro__stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro__links {
        justify-content: center;
    }

    .intro__left-wrapper {
        margin-bottom: 25px;
    }
}

@media (max-width: 1050px) {
    .intro {
        margin-top: 100px;
    }
}

@media (max-width: 750px) {
    .intro__stat-value {
        font-size: 40px;
        line-height: 110%;
        margin-top: 12px;
    }
}

@media (max-width: 550px) {
    .intro__stat-value {
        font-size: 30px;
    }

    .intro__phone-bg img {
        width: 600px;
    }

    .intro__phone img {
        width: 400px;
    }
}

@media (max-width: 400px) {
    .intro__phone-bg img {
        width: 550px;
    }

    .intro__phone img {
        width: 370px;
    }

    .intro__stats {
        column-gap: 10px;
    }

    .intro__trust-pilot img {
        width: 300px;
        height: auto;
    }
}