:root {
    --pink: rgba(236, 72, 152, 1);
    --pink-0_4: rgba(236, 72, 152, 0.4);

    --violet: rgba(144, 91, 241, 1);
    --violet-0_1: rgba(144, 91, 241, 0.1);

    --black: rgba(1, 1, 1, 1);
    --muted: rgba(52, 52, 52, 1);
    --gray: rgb(241, 239, 246);
    --white: rgba(255, 255, 255, 1);

    --pink-shadow: 0px 0px 16px 0px rgba(236, 72, 116, 0.24);
}
* {
    box-sizing: border-box;
}
ul {
    list-style: none;
}
.screen {
    min-height: 100vh;
}
img {
    max-width: 100%;
}
* {
    outline: none !important;
}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--black);
}
main {
    background-color: var(--gray);
    position: relative;
}
main:after {
    content: "";
    display: block; 
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('bg.png');
    background-size: 30% auto;
    background-position: top center;
    opacity: 0.12;
    width: 100%;
    height: 100%;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    main:after {
        background-size: 100% auto;
    }
}
main > * {
    position: relative;
    z-index: 2;
}
.gradient-text {
    background: linear-gradient(90deg, var(--violet) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.muted-text {
    color: var(--muted);
}
.pink-text {
    color: var(--pink);
}
.mb-0_5 {
    margin-bottom: 0.5rem;
}
.mb-1 {
    margin-bottom: 1rem;
}
.mb-1_5 {
    margin-bottom: 1.5rem;
}
.mb-2 {
    margin-bottom: 2rem;
}
.mt-1_5 {
    margin-top: 1.5rem;
}
.mt-2 {
    margin-top: 2rem;
}
.brad-05 {
    border-radius: 0.5rem !important;
}
.brad-1 {
    border-radius: 1rem !important;
}
.brad-10 {
    border-radius: 10rem !important;
}
strong,
.bold{
    font-weight: bold;
}
.semi-bold {
    font-weight: 600;
}

.wrapper {
    width: 1000px;
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}
.wrapper-md {
    width: 592px;
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}
.small {
    font-size: 14px;
}
.block {
    padding: 1rem;
    border-radius: 1rem;
}
.block-lg {
    padding: 2rem 3rem 2rem 2rem;
    border-radius: 1rem;
}
p {
    padding-bottom: 0;
}
.btn-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
}
.btn {
    width: 100%;
    text-decoration: none;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, var(--violet) 0%, var(--pink) 100%);
    color: var(--white);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    border: 0px solid #000;
    font-size: 18px;
    line-height: 1;
    min-height: 48px;
    font-weight: 600;
}
h1 {
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
}
h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 130%;
}
h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
}
h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
}
h5 {
    font-weight: 500;
    font-size: 22px;
}
.btn-blink {
    overflow: hidden;
    position: relative;
}
.btn-blink:after {
    content: "";
    display: block;
    width: 1rem;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
    position: absolute;
    left: -100%;
    top: 0;
    z-index: 1;
    transform: rotate(45deg) scale(2);
    animation: 3s linear 0s infinite normal animation-blink;
}
.center {
    text-align: center;
}
.uppercase {
    text-transform: uppercase;
}
@keyframes animation-blink {
    0% {
        left: -100%;
    }
    100%,
    20% {
        left: 100%;
        margin-left: 5rem;
    }
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }
    html {
        font-size: 16px;
    }
    .desk-only {
        display: none;
    }
    .block-lg {
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

.tag {
    display: inline-block;
    border-radius: 10rem;
    padding: 8px 16px;
    border: 1px solid var(--pink);
    font-size: 14px;
}
@media screen and (max-width: 767px) {
    .tag {
        font-size: 12px;
    }
}




.hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.hero .dynamic-number {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
}
.hero .dynamic-number span {
    width: 74px;
    white-space: nowrap;
    display: inline-block;
    text-align: left;
}
.hero .blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.hero .block {
    text-align: center;
    background: var(--white);
    box-shadow: var(--pink-shadow);
    border-radius: 16px;
    padding: 15px 6px;
}
.hero .block > img {
    width: 40px;
    min-width: 40px;
    aspect-ratio: 1/1;
}
.hero .block h4 {
    margin-bottom: 2px;
    font-weight: bold;
    font-size: clamp(20px, 2.4vw, 24px);
}
.hero .block p {
    color: var(--muted);
    margin-bottom: 0;
}
.hero .block img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
    .hero .blocks {
        gap: 0.5rem;
    }
    .hero .block p {
        font-size: 12px;
    } 
}





.rating .trusted {
    display: flex;
    justify-content: center;
    align-items: center;
}
.rating .trusted img {
    max-width: 240px;
    display: block;
}
.rating .line {
    font-size: 15px;
}
.rating .line span {
    font-size: 16px;
}




.comment {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: var(--white);
    border-top: 1px solid var(--violet-0_1);
    border-bottom: 1px solid var(--violet-0_1);
}
.comment .wrapper-md {
    background: var(--gray);
    border-radius: 1rem;
}
.comment-header {
    padding: 1rem;
    border-bottom: 1px solid var(--white);
}
.comment-blocks {
    padding: 1rem;
    max-height: 40vh;
    overflow-y: auto;
    border-bottom: 1px solid var(--white);
}
.comment .block {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}
.comment .block .comment-top-line {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.ava {
    width: 40px;
    min-width: 40px;
    aspect-ratio: 1/1;
    border-radius: 10rem;
    object-fit: cover;
    object-position: center;
    margin-right: 0.5rem;
    overflow: hidden;
}
.ava img {
    width: 100%;
    height: 100%;
}

.comment .block .reply {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    margin-left: calc(40px + 0.5rem);
    margin-top: 0.5rem;
    font-size: 12px;
    color: var(--muted);
}
.comment .block .reply .like-counter {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.comment .block .reply .like-counter img {
    width: 16px;
    margin-left: 4px;
}
.comment-content {
    background: var(--white);
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-grow: 1;
}
.comment-content .name {
    margin-bottom: 0.5rem;
}
.comment-content .text {
    line-height: 1.5;
}
.comment-field {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
}
.comment-field .field {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 0.25rem;
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.comment-field .field input {
    flex-grow: 1;
    border: none;
    padding: 0.5rem;
    font-size: 14px;
}
.comment-field .field button {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
}
.comment-field .field button img {
    width: 20px;
}
@media screen and (max-width: 767px) {
    .comment-blocks {
        max-height: 60vh;
    }
}





.contact {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.contact .blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem
}
.contact .block img {
    width: 40px;
}
.contact .block {
    text-align: center;
    background: var(--white);
    box-shadow: var(--pink-shadow);
    border-radius: 16px;
    padding: 15px 6px;
}
.contact .block p {
    font-size: 16px;
}
@media screen and (max-width: 767px) {
    .contact .blocks {
        grid-template-columns: 1fr;
    }
}




footer {
    padding: 1rem 0;
    background: var(--gray);
    border-top: 1px solid var(--violet-0_1);
}
.footer-links {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--violet-0_1);
}
.footer-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-links ul a {
    display: inline-block;
    color: var(--black);
    text-decoration: none;
    padding: 0 10px;
}




.final {
    padding-top: 2rem;
    padding-bottom: 0;
}
@media screen and (max-width: 767px) {
    .final {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
}
.final .wrapper-md {
    background: var(--white);
}
.card-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}
.list-item {
    display: flex;
    gap: 12px;
    align-items: center;
}
.item-circle {
    flex: 0 0 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--violet), var(--pink));
    display: grid;
    place-items: center;
    box-shadow: 0 4px 14px rgba(144, 91, 241, 0.35);
}
.item-circle h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    color: var(--white);
}

.item-content h5 {
    margin: 2px 0 2px;
    font-size: 17px;
    font-weight: 700;
}
.item-content p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}


.timer {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 8px 8px 16px;
}
.timer .timer-clock {
    width: 40px;
    display: block;
    text-align: left;
}
.timer img {
    display: block;
}
.timer .tag {
    margin-left: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: var(--pink-0_4);
    border: 0;
}

.tip {
    border: 1px solid var(--pink);
}



.rating-final {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.app {
    display: flex;
    justify-content: center;
    align-items: stretch;
}
.app > *:not(:last-child) {
    border-right: 1px solid var(--violet-0_1);
}
.app .block img {
    width: 40px;
    margin-bottom: 0.25rem;
}
.app .block {
    min-width: 160px;
    border-radius: 0;
}
.app .block > p:first-of-type {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 0.25rem;
}
.app .block > p:last-of-type {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}




.screen-2 .screen-inner {
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 767px) {
    .screen-2 .final {
        order: 1;
    }  
    .screen-2 .comment {
        order: 2;
    }  
    .screen-2 .rating-final {
        order: 3;
    }  
}