/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

@font-face {
    font-family: Montserrat;
    src: url('../suLott-fonts/suLott-montserrat.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: Inter;
    src: url('../suLott-fonts/suLott-inter.woff2') format('woff2');
    font-display: swap;
}

.body_suLott {
    background-color: #FFFFFF;
    color: #2F2F2F;
    overflow-x: hidden;
    font-family: Inter, sans-serif;
    line-height: 1.6;
}

.container_suLott {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta_suLott {
    max-width: 1240px;
    margin: 0 auto;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp_suLott {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse_suLott {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.reveal_suLott {
    opacity: 0;
    transition: 0.8s ease-out;
}

.reveal_suLott.active_suLott {
    opacity: 1;
    animation: fadeInUp_suLott 0.8s ease-out forwards;
}

/* --- HEADER --- */
.header_suLott {
    background: #100606;
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: 0.3s;
}

.header_suLott__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_suLott {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav_suLott__list {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav_suLott__link {
    text-decoration: none;
    font-family: Montserrat;
    font-size: 17px;
    line-height: 24px;
    color: #FFFFFF;
    transition: 0.3s;
    position: relative;
}

.nav_suLott__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #0ee661;
    transition: 0.3s;
}

.nav_suLott__link:hover {
    color: #fff;
}

.nav_suLott__link:hover::after {
    width: 100%;
}

/* --- BUTTONS --- */
.btn_suLott {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: Inter;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    text-align: center;
}

.btn_suLott--primary {
    background: #0064323D;
    border: 1px solid #377661;
    color: #fff;
}

.btn_suLott--primary:hover {
    background: greenyellow;
    transform: translateY(-2px);
}

.btn_suLott--outline {
    background: #377661;
    color: #fff;
}

.btn_suLott--outline:hover {
    background: rgb(99, 163, 4);
    transform: translateY(-2px);
}

.pic-ab img {
    width: 100%;
}

/* --- HERO & BACKGROUNDS --- */
.hero_suLott {
    background-image: url('../suLott-img/suLott-hero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: left;
}

.hero-cont {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0px 24px;
}

.section-top_suLott {
    font-family: Inter;
    font-size: 26px;
    text-transform: uppercase;
    color: #A1ADFF;
}

.section-top_suLott2 {
    font-family: Inter;
    font-size: 20px;
    text-transform: uppercase;
    color: #A1ADFF;
}

.hero_suLott__title {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 38px;
    line-height: 100%;
    text-transform: uppercase;
    max-width: 612px;
    color: #FFFFFF;
}

.hero_suLott__desc {
    font-family: Inter;
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
    max-width: 612px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 612px;
}

.backfon1 {
    background: url('../suLott-img/suLott-back1.webp') center/cover no-repeat;
}

.backfon2 {
    background: url('../suLott-img/suLott-back2.webp') center/cover no-repeat;
}

.backfon3 {
    background: url('../suLott-img/suLott-back3.webp') center/cover no-repeat;
}

/* --- CARDS & GRID --- */
.section-head_suLott {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-title_suLott {
    font-family: Inter;
    font-weight: 800;
    font-size: 17px;
    line-height: 19px;
    color: #2F2F2F;
    padding-bottom: 12px;
}

.section-text_suLott {
    max-width: 610px;
    font-family: Inter;
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    color: #2F2F2F;
}

.benefits_suLott,
.steps_suLott,
.cta_suLott {
    padding: 40px 0;
}

.benefits_suLott__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
}

.card_suLott {
    border: 1px solid #3C4794;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    background: rgba(11, 13, 27, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card_suLott:hover {
    transform: translateY(-10px);
    border-color: #c0173d;
    box-shadow: 0 10px 20px rgba(192, 23, 61, 0.2);
}

.card_suLott img {
    width: 60px;
    transition: 0.3s;
}

.card_suLott:hover img {
    transform: rotate(5deg) scale(1.1);
}

.steps_suLott__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    max-width: 610px;
}

.step-card_suLott {
    border: 1px solid #3C4794;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    background: rgba(11, 13, 27, 0.5);
}

.step-card_suLott:hover {
    background: rgba(60, 71, 148, 0.2);
    border-color: #A1ADFF;
}

.step-card_suLott__num {
    font-family: Montserrat;
    font-size: 50px;
    color: #BB133D;
    line-height: 1;
}

/* --- FORMS & MODALS (FIXED STYLES) --- */
.overlay_suLott {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.overlay_suLott.active {
    display: flex;
    animation: fadeIn_suLott 0.3s ease;
}

@keyframes fadeIn_suLott {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-wrapper_suLott {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.modal-close_suLott {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.auth-card_suLott {
    background-color: #FFFFFF;
    border-radius: 35px;
    padding: 64px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.overlay_suLott.active .auth-card_suLott {
    transform: scale(1);
}

.auth-card_suLott__title {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #2F2F2F;
    text-align: center;
    margin-bottom: 16px;
}

.auth-card_suLott p {
    font-family: Inter;
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    text-align: center;
    color: #2F2F2F;
    padding-bottom: 24px;
}

.input_suLott {
    width: 100%;
    background-color: transparent;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    padding: 16px 24px;
    color: #363636;
    font-family: Inter;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: 0.3s;
}

.input_suLott:focus {
    border-color: #0ee661;
    box-shadow: 0 0 10px rgba(192, 23, 61, 0.15);
}

.input_suLott::placeholder {
    color: #363636;
}

.btn-submit_suLott {
    width: 100%;
    background-color: #377661;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-family: Inter;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit_suLott:hover {
    background-color: #0ee661;
    transform: translateY(-2px);
}

.auth-switch_suLott {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #fff;
}

.auth-switch_suLott button {
    background: none;
    border: none;
    color: green;
    font-family: Montserrat;
    cursor: pointer;
    padding-left: 5px;
}

.auth-switch_suLott button:hover {
    text-decoration: underline;
}

.form-msg_suLott {
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    min-height: 20px;
    font-family: Inter;
}

/* --- AGE & FOOTER --- */
.age-check_suLott {
    position: fixed;
    inset: 0;
    background: #050811;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.age-check_suLott__content {
    text-align: center;
    padding: 30px;
    animation: fadeInUp_suLott 0.6s ease;
}

.age-check_suLott h2 {
    font-family: Montserrat;
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.footer_suLott {
    padding: 60px 0 30px;
    background: #070814;
    border-top: 1px solid #1a1e3a;
}

.footer_suLott__top {
    display: flex;
    margin-bottom: 40px;
    gap: 40px;
}

.footer_suLott__list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_suLott__link {
    color: #A1ADFF;
    text-decoration: none;
    transition: 0.3s;
}

.footer_suLott__link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(161, 173, 255, 0.5);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .burger_suLott {
        display: flex;
    }

    .nav_suLott {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #050811;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        display: flex;
        z-index: 100;
    }

    .nav_suLott.active {
        right: 0;
    }

    .nav_suLott__list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .benefits_suLott__grid,
    .steps_suLott__grid {
        grid-template-columns: 1fr;
    }

    .header_suLott__auth {
        flex-direction: column;
        width: 80%;
    }

    .footer_suLott__top {
        flex-direction: column;
    }
}

body.lock_suLott {
    overflow: hidden;
}

.age-check_suLott__content p {
    padding-bottom: 20px;
    color: #fff;
}

.header_suLott__auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

.works-cont {
    display: flex;
    gap: 24px;
}

.step-card_suLott {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step-card_suLott h2 {
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    text-transform: capitalize;
    padding-bottom: 10px;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #110000;
    border-radius: 24px;
    padding: 24px;
    gap: 24px;
    margin: 0 24px;
}

.section-title_suLott-cta {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.cta-block p {
    font-family: Inter;
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    text-align: center;
    color: #fff;
}

.cta-block button {
    margin-top: 20px;
}

.footer_suLott__bottom {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer_suLott__bottom p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFFCC;
}

.age_suLott {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 26px;
    line-height: 130%;
    text-align: center;
    text-transform: capitalize;
    color: #BB133D;
}

.footer_suLott__info {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_suLott__info p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFFCC;
}

.footer_suLott__info2 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer_suLott__info2 h2 {
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    text-transform: capitalize;
}

.footer_suLott__info2 p {
    padding-bottom: 10px;
    color: #FFFFFFCC;
}

.card_suLott h2 {
    padding-bottom: 10px;
}

@media(max-width: 666px) {
    .section-head_suLott {
        flex-direction: column;
        gap: 14px;
    }

    .works-cont {
        flex-direction: column-reverse;
    }

    .header_suLott {
        padding: 15px 0px;
    }

    .hero_suLott {
        padding: 40px 0px;
    }

    .section-top_suLott {
        font-size: 20px;
    }

    .hero_suLott__title {
        font-size: 28px;
        line-height: 120%;
    }

    .hero_suLott__desc {
        font-size: 17px;
        line-height: 24px;
    }

    .benefits_suLott,
    .steps_suLott,
    .cta_suLott {
        padding: 40px 0;
    }

    .section-top_suLott2 {
        font-size: 18px;
    }

    .section-title_suLott h2 {
        font-size: 28px;
    }

    .section-text_suLott p {
        font-size: 14px;
    }

    .card_suLott img {
        width: 50px;
    }

    .card_suLott {
        padding: 16px;
    }

    .card_suLott h2 {
        font-size: 18px;
    }

    .card_suLott p {
        font-size: 14px;
    }

    .step-card_suLott__num {
        font-size: 40px;
    }

    .step-card_suLott h2 {
        font-size: 18px;
    }

    .step-card_suLott p {
        font-size: 14px;
    }

    .section-title_suLott {
        font-size: 17px;
    }

    .footer_suLott__list {
        justify-content: center;
    }
}

/* --- BURGER STYLES --- */
.burger_suLott {
    display: none;
    /* Скрыт на десктопе */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    /* Поверх всего */
    padding: 0;
}

.burger-line_suLott {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #377661;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Анимация превращения в крестик (когда у кнопки класс active) */
.burger_suLott.active .burger-line_suLott:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.burger_suLott.active .burger-line_suLott:nth-child(2) {
    opacity: 0;
}

.burger_suLott.active .burger-line_suLott:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* --- MOBILE NAVIGATION --- */
@media (max-width: 992px) {
    .burger_suLott {
        display: flex;
        /* Показываем на мобилках */
    }

    .nav_suLott {
        position: fixed;
        top: 0;
        right: -100%;
        /* Спрятан за экраном справа */
        width: 100%;
        height: 100vh;
        background-color: #070814;
        /* Темный фон меню */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding: 40px;
    }

    /* Когда меню открыто */
    .nav_suLott.active {
        right: 0;
    }

    .nav_suLott__list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav_suLott__link {
        font-size: 24px;
        /* Увеличиваем ссылки для удобства нажатия */
    }

    .header_suLott__auth {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }

    .btn_suLott {
        width: 100%;
    }
}

.ab-p {
    padding-bottom: 10px;
}

.ab-t {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.ab-gr {
    padding-bottom: 20px;
}

.ab-p-down {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 10px;
    color: #FFFFFFCC;
}

/* --- CONTACT SECTION --- */
.contact_suLott {
    padding-top: 70px;
}

.contact-form-block_suLott {
    width: 100%;
    max-width: 715px;
}

.contact-wrapper_suLott {
    display: flex;
    gap: 20px;
    padding: 20px 0 50px 0;
}

.contact-form_suLott {
    display: flex;
    flex-direction: column;
}

.textarea_suLott {
    min-height: 150px;
    resize: none;
}

.checkbox-group_suLott {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0;
}

.checkbox-group_suLott input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #c0173d;
}

.checkbox-group_suLott label {
    font-size: 14px;
    color: #FFFFFFCC;
    cursor: pointer;
    line-height: 1.4;
}

.w-100_suLott {
    width: 100%;
}

/* --- CONTACT INFO --- */
.contact-info-list_suLott {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item_suLott {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item_suLott p {
    font-family: Inter;
    font-size: 16px;
    color: #ffffff;
}

@media (max-width: 992px) {
    .contact-wrapper_suLott {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}




/* --- POLICY PAGE STYLES --- */
.policy-hero_suLott {
    text-align: left;
}

.policy-content_suLott {
    padding: 60px 0 100px 0;
}

.policy-text_suLott {
    max-width: 900px;
}

.policy-text_suLott h2 {
    word-break: break-all;
}

.policy-text_suLott ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.policy-text_suLott ul li {
    margin-bottom: 10px;
}

.policy-text_suLott strong {
    font-family: Inter;
}

/* Переопределение для адекватного отображения списков */
.policy-text_suLott .ab-p-down {
    padding-bottom: 15px;
}

@media (max-width: 768px) {
    .policy-hero_suLott {
        padding: 40px 0;
    }

    .ab-t {
        font-size: 32px;
    }
}


/* --- HOW IT WORKS STYLES (suLott) --- */
.how-works_suLott {
    background-color: #FFFFFF;
    /* Оставляем белым или меняем на фон сайта */
}

.section-title_suLott-ab {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: #2F2F2F;
    padding-bottom: 40px;
}

.how-works_suLott__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
}

.how-works_suLott__item {
    height: 100%;
}

.how-works_suLott__card {
    background: #FFFCF8;
    /* Светлый вариант, так как фон секции белый */
    border: 1px solid #D7D7D7;
    border-radius: 24px;
    padding: 16px;
    text-align: center;
    height: 100%;
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Красивый эффект при наведении в стиле suLott */
.how-works_suLott__card:hover {
    transform: translateY(-15px);
    border-color: #0ee661;
    /* Твой зеленый акцент */
    box-shadow: 0 15px 30px rgba(14, 230, 97, 0.15);
    background: #fff;
}

.how-works_suLott__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.how-works_suLott__card:hover .how-works_suLott__icon {
    transform: scale(1.1) rotate(5deg);
}

.how-works_suLott__icon img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.how-works_suLott__card-title {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #2F2F2F;
}

.how-works_suLott__card-text {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #2F2F2F;
    line-height: 1.5;
}

/* Промежуточный адаптив */
@media (max-width: 1100px) {
    .how-works_suLott__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 666px) {
    .how-works_suLott {
        padding: 40px 0;
    }

    .how-works_suLott__grid {
        grid-template-columns: 1fr;
    }

    .how-works_suLott__card {
        padding: 30px 15px;
    }

    .how-works_suLott__card-title {
        font-size: 17px;
    }
}

/* --- FOOTER BANNER STYLES (suLott) --- */
.footer-banner_suLott {
    background-color: #0a0505;
    /* Очень темный, почти черный фон */
    padding: 40px 0 30px;
    text-align: center;
    border-top: 1px solid #1a1010;
}

.footer-banner_suLott__warning {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-banner_suLott__warning a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-banner_suLott__logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.footer-banner_suLott__box {
    background-color: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-banner_suLott__box:hover {
    transform: scale(1.05);
}

.footer-banner_suLott__box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Навигация внизу футера */
.footer-banner_suLott__link-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
}

.footer-banner_suLott__link {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2d5a45;
    /* Темно-зеленый цвет ссылок с макета */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-banner_suLott__link:hover {
    color: #0ee661;
    /* Твой акцентный зеленый при наведении */
}

/* Адаптив для футера */
@media (max-width: 768px) {

    .footer-banner_suLott__logos {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-banner_suLott__logos {
        gap: 24px;
    }

    .footer-banner_suLott__link-list {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 660px) {
    .btn_suLott {
        width: auto;
    }

    .hero-btns {
        width: auto;
    }

    .hero_suLott {
        background-position: left;
    }

    .auth-card_suLott {
        padding: 35px;
    }

}

/* --- MISSION AND VISION STYLES (suLott) --- */
.mission_suLott {
    padding: 40px 0;
    background-color: #FFFFFF;
}

.mission_suLott__main-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #2F2F2F;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.2;
}

.mission_suLott__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.mission_suLott__card {
    background: #FFFCF8;
    /* Почти белый фон карточки */
    border: 1px solid #D7D7D7;
    border-radius: 24px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mission_suLott__card:hover {
    border-color: #3C4794;
    /* Подсветка границы при наведении */
    transform: translateY(-5px);
}

.mission_suLott__card-title {
    font-family: Montserrat;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #2F2F2F;
}

.mission_suLott__card-text {
    font-family: Inter;
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
    text-align: center;
    color: #4D4D4D;
}

.mission_suLott__sources {
    margin-top: 10px;
}

.mission_suLott__sources-title {
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #2F2F2F;
    margin-bottom: 10px;
}

/* Адаптив */
@media (max-width: 992px) {
    .mission_suLott__grid {
        grid-template-columns: 1fr;
        /* На планшетах и телефонах в одну колонку */
        gap: 30px;
    }

    .mission_suLott {
        padding: 40px 0;
    }
}

@media (max-width: 666px) {
    .mission_suLott__card {
        padding: 30px 20px;
    }

    .mission_suLott__card-title {
        font-size: 18px;
    }

    .mission_suLott__card-text {
        font-size: 14px;
    }
}

/* --- OUR APPROACH STYLES (suLott) --- */
.approach_suLott {
    padding: 0px 0px 40px 0px;
    background-color: #FFFFFF;
}

.approach_suLott__main-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #2F2F2F;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
    line-height: 1.2;
}

.approach_suLott__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    list-style: none;
    padding: 0;
}

.approach_suLott__card {
    background: #fdfdfd;
    border: 1px solid #EAEAEA;
    border-radius: 24px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Эффект пружины */
}

/* Красивый ховер-эффект */
.approach_suLott__card:hover {
    transform: translateY(-12px);
    border-color: #3C4794;
    box-shadow: 0 15px 35px rgba(60, 71, 148, 0.1);
    background-color: #ffffff;
}

.approach_suLott__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.approach_suLott__card:hover .approach_suLott__icon {
    transform: scale(1.1) rotate(5deg);
}

.approach_suLott__icon img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.approach_suLott__title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #2F2F2F;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.3;
}

.approach_suLott__text {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #4A4A4A;
    line-height: 1.5;
}

/* Адаптив */
@media (max-width: 992px) {
    .approach_suLott__grid {
        grid-template-columns: 1fr;
        /* На планшетах и мобилках в одну колонку */
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }

    .approach_suLott {
        padding: 40px 0;
    }
}

@media (max-width: 666px) {
    .approach_suLott__card {
        padding: 30px 20px;
    }

    .approach_suLott__title {
        font-size: 18px;
    }

    .approach_suLott__text {
        font-size: 14px;
    }
}

/* --- COOKIE POPUP STYLES (suLott) --- */
.cookie_suLott {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 20px);
    width: calc(100% - 32px);
    max-width: 800px;
    background: #070814;
    border: 1px solid #377661;
    border-radius: 16px;
    z-index: 1900;
    padding: 20px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.cookie_suLott.active_suLott {
    opacity: 1;
    transform: translate(-50%, 0);
}

.cookie_suLott__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie_suLott__text p {
    font-family: Inter, sans-serif;
    font-size: 15px;
    color: #FFFFFFCC;
    line-height: 1.4;
}

.cookie_suLott__text a {
    color: #0ee661;
    text-decoration: underline;
}

.cookie_suLott__btns {
    min-width: 140px;
}

/* Адаптив для куки */
@media (max-width: 666px) {
    .cookie_suLott__inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie_suLott__btns {
        width: 100%;
    }
}

/* --- CONTACT SECTION STYLES (suLott) --- */
.contact-page_suLott {
    padding: 40px 0;
}

.contact-page_suLott__main-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #2F2F2F;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.contact-page_suLott__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-page_suLott__image img {
    height: auto;
    border-radius: 20px;
    display: block;
}

.contact-page_suLott__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group_suLott {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group_suLott label {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #2F2F2F;
}

/* Переопределение инпутов для светлой секции */
.contact-page_suLott .input_suLott {
    background-color: #ffffff;
    border: 1px solid #D7D7D7;
    border-radius: 12px;
    margin-bottom: 0;
    font-weight: 400;
    color: #2F2F2F;
}

.contact-page_suLott .textarea_suLott {
    min-height: 150px;
    padding-top: 15px;
}

.contact-page_suLott__privacy-note {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4A4A4A;
    line-height: 1.4;
    margin-bottom: 30px;
}

.contact-page_suLott__details-box {
    background: #FFFCF8;
    border: 1px solid #D7D7D7;
    border-radius: 12px;
    padding: 16px;
}

.details-box-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: #2F2F2F;
}

.details-list_suLott {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.details-item_suLott {
    display: flex;
    align-items: center;
    gap: 15px;
}

.details-item_suLott img {
    width: 24px;
    height: 24px;
}

.details-item_suLott p,
.details-item_suLott a {
    font-family: Inter, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2F2F2F;
    text-decoration: none;
}

.details-item_suLott a:hover {
    color: #3d705c;
}

/* Адаптив */
@media (max-width: 992px) {
    .contact-page_suLott__grid {
        grid-template-columns: 1fr;
    }

    .contact-page_suLott {
        padding: 40px 0;
    }

    .contact-page_suLott__image {
        display: none;
    }
}




/* --- GAME SECTION STYLES (suLott) --- */
.game_suLott__wrapper {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
}

.game-box-title {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #2F2F2F;
    text-align: center;
}

/* Number Grid 7x7 */
.number-grid_suLott {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.num-btn_suLott {
    aspect-ratio: 1;
    width: 100%;
    background: #E0E0E0;
    border: none;
    border-radius: 50%;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.num-btn_suLott:hover {
    background: #1A7154;
    color: #fff;
}

.num-btn_suLott.active_suLott {
    background: #1A7154;
    /* Твой зеленый */
    color: #fff;
}

.game_suLott__controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.game_suLott__controls .btn_suLott {
    width: auto;
    min-width: 150px;
}

/* Summary Box */
.game_suLott__summary {
    background: #ffffff;
    border: 1px solid #EAEAEA;
    border-radius: 20px;
    padding: 25px;
}

.game-form_suLott {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Адаптив */
@media (max-width: 992px) {
    .game_suLott__wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 666px) {
    .number-grid_suLott {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .game_suLott__wrapper {
        padding: 20px 15px;
    }
}

.game_suLott {
    padding: 40px 0px;
}


/* --- COOKIE POLICY PAGE STYLES (suLott) --- */
.policy-hero_suLott {
    background-color: #fdfdfd;
}

.policy-hero_suLott__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 32px;
}

.policy-title_suLott {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #2F2F2F;
    margin: 0;
}

.policy-date_suLott {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #2F2F2F;
}

.policy-content_suLott {
    padding: 70px 0 70px;
}

.policy-text_suLott {
    max-width: 1000px;
}

.policy-text_suLott p {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    color: #2F2F2F;
    margin-bottom: 24px;
}

.policy-text_suLott h2 {
    font-family: Inter;
    font-weight: 800;
    font-size: 17px;
    padding-bottom: 24px;
    color: #2F2F2F;
}

.policy-text_suLott h3 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #2F2F2F;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-text_suLott ul {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style-type: disc;
}

.policy-text_suLott ul li {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #4A4A4A;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* Адаптив */
@media (max-width: 768px) {
    .policy-hero_suLott__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .policy-title_suLott {
        font-size: 28px;
    }

    .policy-content_suLott {
        padding: 40px 0 60px;
    }
}

/* --- FORMS & MODALS (SCROLLABLE ON MOBILE) --- */
.overlay_suLott {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    display: none;
    /* Центрируем через flex, но разрешаем прокрутку */
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    /* Отступы сверху и снизу, чтобы модалка не липла к краям */
    backdrop-filter: blur(8px);
    overflow-y: auto;
    /* РАЗРЕШАЕМ ПРОКРУТКУ ОВЕРЛЕЯ */
    -webkit-overflow-scrolling: touch;
    /* Плавный скролл на iOS */
}

.overlay_suLott.active {
    display: flex;
    animation: fadeIn_suLott 0.3s ease;
}

.modal-wrapper_suLott {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: auto;
    /* Центрирует модалку, если она меньше экрана, и позволяет скроллить, если больше */
}

/* Кнопка закрытия */
.modal-close_suLott {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

.auth-card_suLott {
    background-color: #FFFFFF;
    border-radius: 35px;
    padding: 40px 25px;
    /* Уменьшил паддинги для мобилок */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
}

@media (min-width: 768px) {
    .auth-card_suLott {
        padding: 64px;
        /* Возвращаем большие паддинги на десктопе */
    }
}

.overlay_suLott.active .auth-card_suLott {
    transform: scale(1);
}

/* Фикс для мобилок: если модалка очень высокая, прижимаем её к верху */
@media (max-height: 600px) {
    .overlay_suLott {
        align-items: flex-start;
    }

    .modal-wrapper_suLott {
        margin-top: 20px;
    }
}

/* Остальные стили (инпуты, заголовки) оставляем как были */