@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* @font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter.woff2') format('woff2');
} */

* { box-sizing: border-box; }

a {text-decoration: none;}

body {
    margin: 0;
    font-family: "Inter";
    overflow-x: hidden;
    padding-top: 70px; /* Отступ для фиксированного хедера */
}

/* Фиксированный хедер */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1500px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon svg {
    width: 100%;
    height: 100%;
}

.app-name {
    font-size: 20px;
    font-weight: 600;
    color: #1F1F1F;
}

.header-button .button {
    margin: 0;
}

/* Мобильная адаптация для .head-block с 1110px */
@media (max-width: 1110px) {
    .head-block {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .head-photo {
        flex-direction: column;
        padding: 0 20px;
        margin-top: 40px;
        gap: 30px;
    }

    .head-photo .photo {
        order: 1;
    }

    .head-photo .download-block {
        order: 2;
        gap: 25px;
    }

    .head-photo .desc {
        font-size: 16px;
        max-width: 100%;
        text-align: center;
        margin: auto;
    }

    .head-photo .photo {
        width: 100%;
    }

    .head-photo .photo img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        object-fit: cover;
    }

    .head-photo .buttons {
        flex-direction: column;
        gap: 15px;
    }
}

.title {
    text-align: center;
}

.title-desc {
    text-align: center;
    line-height: 1.45;
    font-size: 30px;
    font-weight: 300;

    padding: 0px;
    margin: 0px;
    font-size: 24px;
}

.footer-block {
    padding: 20px 0;
    background-color: #f7f3ed;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.head-block {
    padding-top: 70px;
    background-color: #EFEFEF;
    padding-bottom: 50px;
}

.head-photo {
    display: flex;
    /* padding: 0 140px; */
    margin: auto;
    margin-top: 90px;
    justify-content: space-evenly;
    gap: 10px;
    max-width: 1500px;
}

.head-photo .download-block {
    margin: auto 0;
    display: flex;

    flex-direction: column;
    gap: 40px;
    /* padding: 0 140px; */
}

.head-photo .desc {
    font-weight: 200;
    font-size: 20px;
    max-width: 450px;
    color: black;
    line-height: 1.5;
}

.head-photo .photo {
    /* width: 100%; */
}

.head-photo .photo img {
    width: 500px;
    height: 100%;
    object-fit: cover;
}

.head-photo .buttons {
    display: flex;
    gap: 20px;
}

.button {
    cursor: pointer;
    padding: 18px 50px;
    width: fit-content;
    border-radius: 99px;

    background-color: #E3E3E3;
    color: black;
    font-weight: 500;
}

.button.small {
    padding: 13px 35px;
    font-size: 14px;
}

.button.blue {
    background-color: #1F5BFF;
    color: white;
}

.info-block {
    padding: 30px 200px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin: 0 auto;
    margin-top: 50px;

    max-width: 1500px;
}

.info-item {
    display: flex;
    gap: 30px;
    /* justify-content: space-between; */
}

.info-item .info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
    margin: auto 0;
}

.info-item .info p.title {
    font-size: 22px;
    font-weight: 600;
    color: black;
    text-align: left;
    margin: 0px;
}

.info-item .info p.desc {
    font-size: 15px;
    font-weight: 300;
    color: black;
    line-height: 1.5;
    margin: 0px;
}

.info-item .photo img {
    width: 400px;
    height: 300px;
    object-fit: cover;
} 

.reviews-block {
    padding: 30px 0;
    padding-bottom: 50px;
    background-color: #EFEFEF;
    position: relative;
}

.reviews {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    width: 100%;

    scroll-snap-type: x mandatory;
    scrollbar-width: none;

    padding-left: calc(50% - 250px); /* центрируем 1-ю */
    padding-right: calc(50% - 250px); /* чтобы последняя могла встать по центру */
}

.reviews-hint {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.reviews-indicators {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 20px;
}

.reviews-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-indicators .indicator.active {
    background-color: #1F5BFF;
    width: 24px;
    border-radius: 4px;
}

.reviews .review {
    background-color: #FFFFFF;
    padding: 20px;
    max-width: 500px;
    min-width: 500px;
    scroll-snap-align: center;
    
    cursor: pointer;
}

.reviews::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.review .head {
    display: flex;
    gap: 20px;
}
.review .head .photo img {
    width: 70px;
    height: 70px;
    border-radius: 9999px;
    display: flex;
    object-fit: cover; 
}

.review .head .review-info p {
    margin: 0px;
}

.review .head .review-info .name {
    font-size: 20px;
    line-height: 1.23;
    font-weight: 600;
}

.review .head .review-info .desc {
    color: #777;
}

.review .content {
    line-height: 1.55;
    font-weight: 300;
    font-size: 15px;
}

/* Мобильная адаптация */
@media (max-width: 1110px) {
    body {
        padding-top: 60px; /* Меньший отступ для мобильной версии */
    }

    .main-header {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    .header-content {
        padding: 12px 20px;
    }

    .app-icon {
        width: 35px;
        height: 35px;
    }

    .app-name {
        font-size: 18px;
    }

    .header-button .button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .button {
        padding: 16px 30px;
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .button.small {
        padding: 12px 25px;
        font-size: 14px;
    }

    .title {
        font-size: 24px;
        padding: 0 20px;
    }

    .info-block {
        padding: 30px 20px;
    }

    .info-items {
        gap: 50px;
        margin-top: 30px;
    }

    .info-item {
        flex-direction: column;
        gap: 20px;
    }

    /* Фото всегда сверху в мобильной версии */
    .info-item .photo {
        order: 1;
    }

    /* Текст всегда снизу в мобильной версии */
    .info-item .info {
        order: 2;
        gap: 20px;
        text-align: center;
    }

    .info-item .info p.title {
        font-size: 20px;
        text-align: center;
    }

    .info-item .info p.desc {
        font-size: 14px;
        text-align: center;
    }

    .info-item .info .button {
        margin: 0 auto;
    }

    .info-item .photo img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
    }

    .reviews-block {
        padding: 30px 0;
        padding-bottom: 40px;
    }

    .reviews-hint {
        display: block;
    }

    .reviews-block {
        position: relative;
    }

    /* Градиент справа для указания на возможность прокрутки */
    .reviews-block::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 40px;
        background: linear-gradient(to left, #EFEFEF, transparent);
        pointer-events: none;
        z-index: 1;
        transition: opacity 0.3s ease;
    }

    /* Градиент слева */
    .reviews-block::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 40px;
        background: linear-gradient(to right, #EFEFEF, transparent);
        pointer-events: none;
        z-index: 1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* Показываем градиент слева, когда не в начале */
    .reviews-block.scrolled::before {
        opacity: 1;
    }

    /* Скрываем градиент справа, когда в конце */
    .reviews-block.scrolled-end::after {
        opacity: 0;
    }

    .reviews {
        margin-top: 20px;
        gap: 15px;
        padding-left: 20px;
        padding-right: 20px;
        scroll-snap-type: x mandatory;
        /* Показываем частично следующий отзыв */
        padding-right: 60px;
        position: relative;
        z-index: 0;
    }

    .reviews .review {
        min-width: calc(100vw - 80px);
        max-width: calc(100vw - 80px);
        padding: 20px;
        /* Добавляем визуальный эффект для краев */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: opacity 0.3s ease;
    }

    /* Показываем края следующих отзывов с эффектом */
    .reviews .review:not(:first-child) {
        opacity: 0.85;
    }
    
    /* Активный отзыв полностью видим */
    .reviews .review:first-child {
        opacity: 1;
    }

    .reviews-indicators {
        display: flex;
    }

    .title-desc {
        font-size: 18px;
        padding: 0 20px;
        line-height: 1.4;
    }

    .footer-block {
        padding: 30px 20px;
    }

    .footer-block .button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .head-block {
        padding-top: 30px;
        padding-bottom: 25px;
    }

    .head-photo {
        margin-top: 30px;
        gap: 25px;
    }

    .head-photo .desc {
        font-size: 15px;
    }

    .title {
        font-size: 22px;
    }

    .info-item .info p.title {
        font-size: 18px;
    }

    .info-item .info p.desc {
        font-size: 13px;
    }

    .title-desc {
        font-size: 16px;
    }

    .review .head .review-info .name {
        font-size: 18px;
    }

    .review .content {
        font-size: 14px;
    }
}