* {
    font-family: 'Onest', Arial, Tahoma, sans-serif;
}


html {
    width: 100%;
    min-height: 100%;
    min-width: 320px;
}

body {
    min-height: 100%;
    min-width: 320px;
    background: #f4f4f1;
    background: #efeff4;
    color: #1c1c36;
    overflow-y: scroll;
}

a {
    color: #1c1c36;
}
a:hover {
    color: #402bbe;
}

#site-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.site-wrap {
    max-width: 1440px;
    margin: 0 auto;
}

.spacer-40 {
    height: 40px;
}
.spacer-80 {
    height: 80px;
}
.spacer-130 {
    height: 130px;
}
.spacer-140 {
    height: 140px;
}
.spacer-150 {
    height: 150px;
}
.spacer-160 {
    height: 160px;
}
.spacer-170 {
    height: 170px;
}

.site-cols-wrap {
    justify-content: space-between;
}

.site-col-1 {
    flex: 1;
    max-width: 15.3%;
    min-width: 15.3%;
    /*background: rgba(187, 30, 187, 0.38);*/
}

.site-col-2 {
    flex: 1;
    max-width: 32.3%;
    min-width: 32.3%;
    /*background: rgba(43, 159, 178, 0.45);*/
}

.site-col-3 {
    flex: 1;
    max-width: 49.2%;
    min-width: 49.2%;
    /*background: rgba(81, 178, 43, 0.45);*/

}
.site-col-4 {
    flex: 1;
    max-width: 66.2%;
    min-width: 66.2%;
    /*background: rgba(255, 133, 0, 0.45);*/
}

.page-text-wrap {
    width: 90vw;
    margin: 0 auto;
    max-width: 800px;
    text-align: left;
    padding: 60px;
}
.basic-text {
    font-size: 16px;
    line-height: 20px;
    margin-top: -12px;
}
.basic-text p {
    padding-top: 12px;
}
.basic-text h2 {
    font-size: 20px;
    padding-top: 32px;
}

.block-title {
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 4px;
    color: rgba(8, 8, 8, 0.3);
    border-bottom: 1px solid rgba(8, 8, 8, 0.3);
    width: 50%;
}

.basic-button {
    display: inline-block;
    vertical-align: top;
    padding: 0 24px;
    font-size: 18px;
    line-height: 48px;
    font-weight: 200;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 0;
}
.basic-button:hover {
    color: #fff;
}
.basic-button:active {
    color: #fff;

}

.basic-button:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 1;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.basic-button:active:after {
    opacity: .5;
}

.basic-button:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #402bbe;
    left: 0;
    top: 0;
    border-radius: 10px;
}


.white-button {
    display: inline-block;
    padding: 0 16px;
    background: #eee;
    color: #1c1c36;
    font-size: 14px;
    line-height: 38px;
    border-radius: 8px;
    text-decoration: none;
}
.white-button:hover {
    background: #fff;
    color: #1c1c36;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

footer {
    background: #1c1c36;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    margin-top: 3vw;
    font-size: 14px;
    font-weight: 300;
}


h1, .h1 {
    display: block;
    font-size: 50px;
    letter-spacing: -1px;
    line-height: 1.1;
    font-weight: 700;
}

h2, .h2 {
    display: block;
    font-size: 42px;
    letter-spacing: -.5px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
}

h3, .h3 {
    display: block;
    font-size: 64px;
    line-height: 1.1;
    font-weight: normal;
}

.intro-screen {
    padding: 7vw 0;
    /*background: linear-gradient(0deg, rgba(223,223,236,1), rgba(24, 23, 23, 0));*/
}
.intro-screen-content {
    margin: auto;
    text-align: center;
}
.intro-logo {
    width: 70vw;
    max-width: 160px;
    margin-bottom: 5vw;
}
.intro-text {
    font-weight: 300;
    font-size: 24px;
    line-height: 1.3;
    margin-top: 1vw;
    margin-bottom: 4vw;
}


.features-wrap {
    padding: 4vw 0 6vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: #efeff4;
}
.feature {
    flex: 1;
    text-align: center;
}
.feature-icon {
    flex: 1;
    text-align: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, hsl(249, 63%, 46%), hsl(217, 91%, 59%));;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: #fff;
}
.feature-icon svg {
    width: 50%;
}


.feature-title {
    padding-top: 4px;
    font-size: 18px;
}
.feature-text {
    font-size: 14px;
    padding-top: 8px;
    font-weight: 300;
    opacity: .5;
}



.payment-form-wrap {
    text-align: center;
}




.steps-wrap {
    padding: 4vw 0;
    width: 90vw;
    max-width: 800px;
    margin: 0 auto;
}
.steps {
    padding-top: 3vw;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.step {
    display: flex
;
    align-items: flex-start;
    gap: 0.75rem;
}
.step-number {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, hsl(249, 63%, 46%), hsl(217, 91%, 59%));;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Reviews Section */
.reviews-section {
    margin-bottom: 3rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    padding: 1.5rem;
    background: #1c1c36;
    background: linear-gradient(135deg, hsl(249, 63%, 46%), hsl(217, 91%, 59%));;
    border: 1px solid #1c1c36;
    border-radius: 16px;
}

.review-card:hover {

}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: #3780F6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
}

.review-name {
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-icon {
    width: 1rem;
    height: 1rem;
    color: #fff;
}

.review-date {
    font-size: 0.75rem;
    padding-top: 4px;
    color: rgba(255, 255, 255, 0.5);
}

.review-rating {
    text-align: right;
}

.stars {
    margin-bottom: 0.25rem;
}

.star {
    color: #ddd;
    font-size: 1rem;
}

.star.filled {
    color: #fbbf24;
}

.review-amount {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
}

.review-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}


/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Form Section */
.form-section {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.form-card {
    width: 100%;
    max-width: 28rem;
    padding: 1.5rem;
    border: 1px solid rgba(28, 28, 54, 0.2);
    border-radius: 24px;
    box-shadow: 0 10px 30px -5px rgba(55, 128, 246, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-subtitle {
    color: rgba(28, 28, 54, 0.5);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: rgba(28, 28, 54, 0.5);
    margin-bottom: 0.5rem;
}

.label-icon {
    width: 1rem;
    height: 1rem;
}

.form-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    color: #1c1c36;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3780F6FF;
    box-shadow: 0 0 0 2px hsl(165, 100%, 35%, 0.2);
}

.form-input::placeholder {
    color: var(--muted-foreground);
}

.footer-payment-icons {
    padding-top: 24px;
}
.footer-payment {
    display: inline-block;
    width: 80px;
}
.footer-support {
    padding-top: 24px;
}
.footer-links {
    padding: 24px 0;
    color: #fff;
}

.footer-copyright {
    padding: 24px 0;
    color: #fff;
    font-size: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 1);
}
