
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#071321;
    color:#fff;
    line-height:1.6;
}

a{
    color:inherit;
    text-decoration:none;
    transition:.25s;
}

img{
    display:block;
    max-width:100%;
}

button,
textarea{
    font-family:inherit;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:100;
    background:rgba(7,19,33,.92);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-icon{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.logo h3{
    font-size:18px;
    font-weight:700;
}

.logo span{
    display:block;
    color:#9eb4cb;
    font-size:13px;
}

nav{
    display:flex;
    gap:32px;
}

nav a{
    color:#d8e4f2;
    transition:.3s;
    font-weight:500;
}

nav a:hover{
    color:#36b5ff;
}

.reviews-page{
    padding:150px 0 90px;
}

.reviews-page__header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
    margin-bottom:55px;
}

.reviews-page__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(42,169,255,.08);
    border:1px solid rgba(42,169,255,.18);
    color:#55baff;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:18px;
}

.reviews-page__title{
    font-size:58px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:18px;
}

.reviews-page__description{
    max-width:650px;
    color:#95abc8;
    font-size:19px;
    line-height:1.8;
}

.reviews-page__badge{
    min-width:250px;
    background:linear-gradient(145deg,#11243c,#0b1829);
    border:1px solid rgba(255,255,255,.06);
    border-radius:22px;
    padding:28px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 25px 60px rgba(0,0,0,.28);
}

.reviews-page__badge-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#2aa9ff;
    color:#fff;
    font-size:28px;
    flex-shrink:0;
}

.reviews-page__badge span:last-child{
    color:#cfe2f8;
    font-size:16px;
    line-height:1.6;
}

.reviews-alert{
    display:flex;
    align-items:center;
    gap:16px;
    padding:18px 22px;
    border-radius:16px;
    margin-bottom:25px;
    border:1px solid rgba(255,255,255,.08);
}

.reviews-alert__icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
}

.reviews-alert--success{
    background:rgba(45,183,120,.10);
    border-color:rgba(45,183,120,.25);
}

.reviews-alert--success .reviews-alert__icon{
    background:#2db778;
}

.reviews-alert--error{
    background:rgba(255,70,70,.10);
    border-color:rgba(255,70,70,.20);
}

.reviews-alert--error .reviews-alert__icon{
    background:#ff5050;
}


.review-form-card,
.review-status-card,
.review-login-card,
.published-reviews{
    background:linear-gradient(180deg,#112238,#0d1c2f);
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    padding:40px;
    margin-bottom:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.28);
}

.review-form-card__header,
.review-status-card,
.review-login-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.review-form-card__header h2,
.review-status-card h2,
.review-login-card h2{
    font-size:34px;
    margin:12px 0;
    font-weight:800;
}

.review-form-card__header p,
.review-status-card p,
.review-login-card p{
    color:#9bb0ca;
    line-height:1.8;
    max-width:650px;
}

.review-form-card__icon,
.review-status-card__icon,
.review-login-card__icon{
    width:95px;
    height:95px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#2aa9ff,#0078ff);

    color:#fff;

    font-size:42px;

    box-shadow:0 15px 40px rgba(42,169,255,.30);
}

.review-form{
    margin-top:35px;
}

.review-form__field{
    display:block;
}

.review-form__label{
    display:block;
    margin-bottom:14px;

    color:#bfd3ec;

    font-weight:700;

    font-size:15px;
}

.review-form textarea{
    width:100%;

    min-height:190px;

    resize:vertical;

    background:#08131f;

    border:1px solid #21374c;

    border-radius:18px;

    padding:22px;

    color:#fff;

    font-size:17px;

    outline:none;

    transition:.25s;
}

.review-form textarea:focus{

    border-color:#2aa9ff;

    box-shadow:0 0 0 5px rgba(42,169,255,.12);

}

.review-form textarea::placeholder{

    color:#7086a3;

}

.review-form__hint{

    display:block;

    margin-top:12px;

    color:#7d96b6;

    font-size:14px;

}

.review-form__button,
.review-login-card__button{

    margin-top:30px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    border:none;

    cursor:pointer;

    background:linear-gradient(90deg,#219cff,#3ab8ff);

    color:#fff;

    font-size:17px;

    font-weight:700;

    padding:18px 34px;

    border-radius:15px;

    transition:.25s;

    box-shadow:0 12px 30px rgba(0,153,255,.25);

}

.review-form__button{

    width:100%;

}

.review-form__button:hover,
.review-login-card__button:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(0,153,255,.35);

}

.review-form__button:active,
.review-login-card__button:active{

    transform:scale(.98);

}

.review-form__button span,
.review-login-card__button span{

    font-size:20px;

    transition:.25s;

}

.review-form__button:hover span,
.review-login-card__button:hover span{

    transform:translateX(5px);

}


.review-status-card{

    justify-content:flex-start;

}

.review-status-card__icon{

    font-size:38px;

}

.review-status-card h2{

    margin-bottom:10px;

}

.review-login-card{

    justify-content:flex-start;

}

.review-login-card__button{

    margin-top:25px;

    width:fit-content;

}

.published-reviews__header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:35px;
}

.published-reviews__header h2{
    font-size:36px;
    font-weight:800;
    margin-top:10px;
}

.published-reviews__count{
    padding:12px 20px;
    border-radius:50px;
    background:rgba(42,169,255,.10);
    border:1px solid rgba(42,169,255,.18);
    color:#5bbcff;
    font-weight:700;
    white-space:nowrap;
}

.reviews-list{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.review-item{
    background:#091726;
    border:1px solid rgba(255,255,255,.06);
    border-radius:20px;
    padding:28px;
    transition:.25s;
}

.review-item:hover{
    transform:translateY(-4px);
    border-color:rgba(42,169,255,.30);
    box-shadow:0 20px 40px rgba(0,0,0,.28);
}

.review-item__top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:20px;
}

.review-item__author{
    display:flex;
    align-items:center;
    gap:16px;
}

.review-item__avatar{
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(135deg,#2aa9ff,#0077ff);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:22px;
    font-weight:800;
    flex-shrink:0;
}

.review-item__author strong{
    display:block;
    font-size:18px;
    margin-bottom:5px;
}

.review-item__author span{
    color:#7e95b3;
    font-size:14px;
}

.review-item__rating{
    color:#ffd24d;
    font-size:18px;
    letter-spacing:2px;
    white-space:nowrap;
}

.review-item__text{
    color:#d8e5f5;
    line-height:1.9;
    font-size:17px;
}

.reviews-empty{
    text-align:center;
    padding:70px 30px;
}

.reviews-empty__icon{
    width:100px;
    height:100px;
    margin:0 auto 30px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#0d1d31;
    border:1px solid rgba(255,255,255,.06);
    font-size:46px;
}

.reviews-empty h3{
    font-size:34px;
    margin-bottom:12px;
}

.reviews-empty p{
    color:#91a7c3;
    font-size:18px;
}

.footer{
    margin-top:90px;
    background:#08131f;
    border-top:1px solid rgba(255,255,255,.06);
    padding:60px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:55px;
}

.footer-logo{
    margin-bottom:22px;
}

.footer-logo img{
    width:48px;
}

.footer-logo h2{
    font-size:22px;
    font-weight:800;
}

.footer-logo span{
    display:block;
    margin-top:2px;
    color:#9eb4cb;
    font-size:13px;
}

.footer h3{
    font-size:22px;
    margin-bottom:18px;
}

.footer p{
    color:#91a8c4;
    line-height:1.8;
}

.footer a{
    display:block;
    color:#9cb1ca;
    margin-bottom:14px;
}

.footer a:hover{
    color:#2aa9ff;
}

.copyright{
    margin-top:45px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.06);
    text-align:center;
    color:#6e85a3;
}


::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#071321;
}

::-webkit-scrollbar-thumb{
    background:#248cff;
    border-radius:50px;
}

@media (max-width:950px){

    header .container{
        height:auto;
        padding:20px 0;
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .reviews-page{
        padding-top:180px;
    }

    .reviews-page__header{
        flex-direction:column;
        align-items:flex-start;
    }

    .reviews-page__title{
        font-size:42px;
    }

    .review-form-card,
    .review-status-card,
    .review-login-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .published-reviews__header{
        flex-direction:column;
        align-items:flex-start;
    }

    .review-item__top{
        flex-direction:column;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

}

@media (max-width:768px){

    header .container{
        height:70px;
        padding:0;
        flex-direction:row;
        gap:0;
    }

    nav{
        display:none;
    }

    .reviews-page{
        padding-top:120px;
    }

}

@media (max-width:600px){

    .reviews-page{
        padding:120px 0 40px;
    }

    .reviews-page__title{
        font-size:34px;
    }

    .reviews-page__description{
        font-size:16px;
    }

    .review-form-card,
    .review-status-card,
    .review-login-card,
    .published-reviews{
        padding:25px;
    }

    .review-form-card__header h2,
    .review-status-card h2,
    .review-login-card h2,
    .published-reviews__header h2{
        font-size:28px;
    }

    .review-item{
        padding:22px;
    }

    .review-item__avatar{
        width:48px;
        height:48px;
        font-size:18px;
    }

    .review-form__button,
    .review-login-card__button{
        width:100%;
    }

}