:root {
    --cream: #fffce8;
    --gold: #ffe033;
    --gold-text: #d99900;
    --dark: #313131;
    --card-gray: #979797;
    --cta: #514d56;
    --footer: #1d1b1f;
    --container-max: 1520px;
    --container-pad: 24px;
    --container-offset: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--dark);
    padding-top: 65px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Контейнер под макет 1920 (контент ~1520px) */
.container {
    max-width: 1520px;
    padding-left: 24px;
    padding-right: 24px;
}

/* ===== Жёлтая кнопка ===== */
.btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 5px;
    font-weight: 700;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    transition: filter .2s ease, transform .2s ease;
}
.btn-yellow__inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-16px);
}
.btn-yellow__inner img {
    width: 23px;
    height: 23px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-yellow:hover {
    filter: brightness(.96);
    color: var(--dark);
    transform: translateY(-1px);
}

.hero .btn-yellow,
#download .btn-yellow{
    border-radius: 10px;
}

.btn-yellow img {
    width: 23px;
    height: 23px;
    object-fit: contain;
}

/* ===== Градиентный логотип-текст ===== */
.brand-gradient {
    background: linear-gradient(165deg, #FFD32A 30%, #CF9200 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

/* ============ ШАПКА ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: #fff;
    z-index: 1030;
    display: flex;
    align-items: center;
    transition: box-shadow .25s ease;
    border-bottom: 4px solid #fffbe8;
}

.site-header.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.header-logo img {
    height: 36px;
    width: 42px;
    display: block;
}

.header-nav {
    list-style: none;
    padding: 0;
    gap: 40px;
    margin-left: 55px;
}

.header-nav a {
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
}

.header-nav a:hover {
    color: var(--gold-text);
}

.header-nav a.nav-active {
    color: var(--gold-text);
}

.header-contacts {
    gap: 40px;
}

.header-site {
    color: var(--gold-text);
    font-weight: 500;
    font-size: 14px;
}

.header-phone {
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    gap: 10px;
}

.phone-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transform: rotate(290deg);
}

/* ============ HERO ============ */
.hero-top {
    background: #fff;
    padding: 16px 0 0;
}

.hero-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-brand {
    font-size: 35px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-image {
    max-width: 975px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-btn {
    width: 360px;
    max-width: 90%;
    height: 56px;
    font-size: 20px;
    margin: -28px auto 0;
    position: relative;
    top: 25px;
    z-index: 2;
}

.hero-bottom {
    background: var(--cream);
    padding: 54px 0 70px;
}

.hero-subtitle {
    font-weight: 600;
    font-size: 25px;
    line-height: 40px;
    max-width: 851px;
    margin: 0 auto 15px;
}

.hero-text {
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
    max-width: 1393px;
    margin: 0 auto;
}
/* ============ Общий заголовок секции ============ */
.section-title {
    text-align: center;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 50px;
}
#features .section-title{
    margin-bottom: 62px;
}
/* ============ СКАЧАТЬ ============ */
.download-section {
    background: var(--cream);
    padding: 40px 0 0;
}

.download-section .section-title {
    margin-bottom: 288px;
}

.download-band {
    background: #fff;
    padding-bottom: 120px;
}

.download-row {
    max-width: 1490px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -100px;
    position: relative;
    bottom: 150px;
}

.dl-card {
    background: url("/bitrix/templates/9111.online/asset/img/card-dl-1.svg") center/100% 100% no-repeat;
    border-radius: 15px;
    padding: 115px 30px 36px;
    text-align: center;
    position: relative;
    height: 100%;
    min-height: 300px;
}

.dl-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 123px;
    height: 123px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    z-index: 2;
}

.dl-badge img {
    object-fit: contain;
}

.dl-badge .os-xp {
    width: 74px;
    height: 74px;
}

.dl-badge .os-win8 {
    width: 62px;
    height: 56px;
}

.dl-badge .os-apple {
    width: 90px;
    height: 92px;
}

.dl-title {
    font-weight: 600;
    font-size: 30px;
    color: #fff;
    margin: 0 0 4px;
}

.dl-subtitle {
    font-weight: 500;
    font-size: 22px;
    color: #fff;
    margin: 0 0 26px;
    min-height: 27px;
}

.dl-btn {
    width: 298px;
    max-width: 100%;
    height: 52px;
    font-size: 22px;
    border: 3px solid #fff;
}
/* ============ КАК ЭТО РАБОТАЕТ ============ */
.how-section {
    padding: 80px 0 90px;
    padding-bottom: 0;
    position: relative;
    bottom: 240px;
}

#how .section-title{
    margin-bottom: 110px;
}

.step-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    padding: 54px 36px 40px;
    text-align: center;
    position: relative;
    height: 100%;
}

.step-badge {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 115px;
    height: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.step-badge img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scaleY(-1);
}

.step-badge-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    line-height: 1.1;
    padding-top: 5px;
}

.step-word {
    font-weight: 500;
    font-size: 20px;
}

.step-num {
    font-weight: 700;
    font-size: 25px;
}

.step-title {
    font-weight: 600;
    font-size: 25px;
    margin: 0 0 14px;
}

.step-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin: 0;
    color: var(--dark);
}
/* ============ ПРЕИМУЩЕСТВА ============ */
.advantages-section {
    padding: 80px 0 120px;
    padding-top: 0;
    margin-top: -128px;
}

.advantages-section .section-title {
    margin-bottom: 38px;
}

/* Сетка на всю ширину экрана: боковые карточки до краёв */
.adv-cards-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.adv-cards-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 486px minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
}

.adv-card {
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    padding: 37px 0 37px;
    text-align: center;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Левая: контент у правого (центрального) края, выровнен по сетке контейнера */
.adv-card--start {
    border-radius: 0 15px 15px 0;
    align-items: stretch;
    padding: 37px 20px 28px 0;
}

.adv-card--start .adv-card__content {
    margin-left: var(--container-offset);
    margin-right: 0;
    width: 447px;
    max-width: calc(100% - var(--container-offset));
    padding-left: 20px;
}

/* Центр */
.adv-card--center {
    border-radius: 15px;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

.adv-card--center .adv-card__content {
    width: 447px;
    max-width: 100%;
}

/* Правая: контент у левого (центрального) края, выровнен по сетке контейнера */
.adv-card--end {
    border-radius: 15px 0 0 15px;
    align-items: stretch;
    padding: 37px 0 28px 20px;
}

.adv-card--end .adv-card__content {
    margin-right: var(--container-offset);
    width: 447px;
    max-width: calc(100% - var(--container-offset));
    padding-right: 20px;
}

.adv-card__content {
    flex-shrink: 0;
}

.adv-icon {
    width: 120px;
    height: 103px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 33px;
}

.adv-icon img {
    height: 103px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.adv-title {
    font-weight: 600;
    font-size: 25px;
    line-height: 20px;
    margin: 0 auto 20px;
    max-width: 333px;
}

.adv-box {
    background: #f4f4f4;
    border-radius: 8px;
    min-height: 124px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-box p {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    margin: 0;
}

.adv-card--start .adv-box p {
    max-width: 375px;
}

.adv-card--center .adv-box p {
    max-width: 395px;
}

.adv-card--end .adv-box p {
    max-width: 365px;
}

@media (max-width: 991px) {
    .adv-cards-bleed {
        width: 100%;
        margin-left: 0;
    }

    .adv-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 24px;
    }

    .adv-card--start,
    .adv-card--end,
    .adv-card--center {
        border-radius: 15px;
        align-items: center;
        padding-left: 28px;
        padding-right: 28px;
        min-height: 0;
    }

    .adv-card__content {
        width: 100%;
        max-width: 447px;
    }
}
/* ============ CTA ============ */
.cta-section {
    background: var(--cta);
    box-shadow: inset 0 8px 8px rgba(51, 49, 54, .56);
    padding: 90px 0 90px;
    text-align: center;
    position: relative;
}

.cta-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    height: 10px;
    background: var(--cta);
    box-shadow: inset 0 6px 6px rgba(51, 49, 54, .56);
}

.cta-title {
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    margin: 0 0 44px;
}

.cta-btn {
    height: 52px;
    padding: 0 64px;
    font-size: 22px;
    border: none;
    transition: all .2s ease-in-out;
    box-shadow:
            0 0 0 4px var(--cta),
            0 0 0 5px #bfa302,
            0 0 0 11px var(--cta),
            0 0 0 12px #b7931d,
            0 0 0 19px var(--cta),
            0 0 0 20px #ad8517;
}

.cta-btn:hover {
    transform: none;
    box-shadow: 0 0 0 1px #bfa302,
    0 0 0 9px var(--cta),
    0 0 0 10px #b7931d,
    0 0 0 18px var(--cta),
    0 0 0 19px #ad8517;
}
/* ============ ВОЗМОЖНОСТИ ============ */
.features-section {
    padding: 120px 0 120px;
}

.features-section .row {
    --bs-gutter-y: 56px;
}

.feat-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: inset 0 2px 2px rgba(0, 0, 0, .18);
    padding: 60px 70px 30px;
    position: relative;
    min-height: 182px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feat-badge {
    position: absolute;
    left: 50%;
    top: -36px;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(139.86deg, #E2B053 10.94%, #956610 85.02%);
    border: 2px solid #bf8e34;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px var(--cream),
                0 0 0 6px #BF8E34,
                0 0 0 11px var(--cream),
                0 3px 3px 10px #00000052;
}

.feat-badge svg {
    width: 38px;
    height: 38px;
}

.feat-badge img {
    height: 47px;
    width: auto;
    max-width: 42px;
    object-fit: contain;
}

.feat-title {
    font-weight: 600;
    font-size: 25px;
    margin: 0 0 20px;
}

.feat-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
}
/* ============ ПОДВАЛ ============ */
.site-footer {
    background: var(--footer);
    color: #fff;
    padding: 50px 0 30px;
}

.footer-brand {
    gap: 39px;
    margin-bottom: 18px;
}

.footer-logo {
    height: 67px;
    width: 79px;
    flex: none;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
}

.footer-brand-text {
    font-size: 25px;
    display: block;
}

.footer-desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    max-width: 348px;
    color: #fff;
}

.footer-col-title {
    font-weight: 500;
    font-size: 18px;
    margin: 0 0 16px;
    color: #fff;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    font-weight: 300;
    font-size: 16px;
    color: #fff;
}

.footer-list a:hover {
    color: var(--gold);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, .2);
    opacity: 1;
    margin: 34px 0 22px;
}

.footer-bottom {
    gap: 135px;
}

.footer-link {
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, .4);
}

.footer-link:hover {
    color: rgba(255, 255, 255, .7);
}

.footer-copy {
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, .4);
    margin-left: auto;
}

.footer-top{
    justify-content: space-between;
}

/* ============ Бургер и мобильное меню ============ */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.burger-btn__line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

.burger-btn.is-active .burger-btn__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-btn.is-active .burger-btn__line:nth-child(2) {
    opacity: 0;
}

.burger-btn.is-active .burger-btn__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10401;
    background: #fff;
    padding: 0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 13px;
    border-bottom: 3px solid #fffbe8;
    padding: 10px;
    height: 65px;
}

.mobile-menu__site {
    color: var(--gold-text);
    font-weight: 500;
    font-size: 14px;
    flex-shrink: 0;
}

.mobile-menu__phone {
    display: flex;
    align-items: start;
    gap: 6px;
    color: var(--dark);
    font-weight: 500;
    font-size: 12px;
    flex: 1;
    min-width: 0;
}

.mobile-menu__phone span {
    white-space: nowrap;
}

.mobile-menu__phone img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
    transform: rotate(290deg);
}

.mobile-menu__close {
    border: none;
    background: transparent;
    font-size: 21px;
    width: 15px;
    height: 14px;
    line-height: 0;
    background: var(--dark);
    color: #fff;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 2px
}

.mobile-menu__close span{
    margin-bottom: 2px;
    display: block;
    font-weight: 100;
}

.mobile-menu__nav {
    list-style: disc;
    padding: 0 0 0 30px;
    margin: 0;
}

.mobile-menu__nav li {
    margin-bottom: 12px;
}

.mobile-menu__nav a {
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
}

.mobile-menu__nav a.nav-active {
    color: var(--gold-text);
}

@media (max-width: 1599px) {
    .hero-text {
        max-width: 100%;
    }
    .adv-cards-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    :root {
        --header-h: 56px;
    }

    body {
        padding-top: var(--header-h);
    }

    .burger-btn {
        display: flex;
    }

    .adv-card--start .adv-card__content{
        margin-left: 0;
    }

    .adv-card--center .adv-card__content,
    .adv-card--start .adv-card__content,
    .adv-card--end .adv-card__content {
        width: 100%;
        max-width: 400px;
    }
    .adv-title{
        font-size: clamp(16px, calc(16px + ((100vw - 320px) * 9 / 879)), 25px);
    }

    .adv-box p{
        font-size: clamp(12px, calc(12px + ((100vw - 320px) * 6 / 879)), 18px);
    }
    .step-title{
        font-size: clamp(16px, calc(16px + ((100vw - 320px) * 9 / 879)), 25px);
    }
    .step-text{
        font-size: clamp(14px, calc(14px + ((100vw - 320px) * 4 / 879)), 18px);
    }
}

/* ============ Планшет: сброс десктопных отступов ============ */
@media (max-width: 991px) {

    /* Блок «Начните работу» — мобильная вёрстка (десктоп не затрагивается) */
    .download-section {
        padding-top: 24px;
    }
    .section-title{
        font-size: clamp(20px, calc(20px + ((100vw - 320px) * 16 / 671)), 36px);
        line-height: 26px;
    }

    .download-section .section-title {
        margin-bottom: 32px;
    }

    .download-band {
        padding-top: 0;
        padding-bottom: 36px;
    }

    .download-row {
        margin-top: 0;
        margin-bottom: 0;
        max-width: none;
        position: static;
    }

    #download .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 16px;
        justify-content: center;
    }

    #download .row > * {
        padding-left: 0;
        padding-right: 0;
    }

    .dl-card {
        width: 100%;
        max-width: 296px;
        margin-left: auto;
        margin-right: auto;
        min-height: 0;
        height: auto;
        aspect-ratio: 292 / 185;
        background: url("../img/card-dl-1-mobile.svg") center / 100% 100% no-repeat;
        border-radius: 15px;
        overflow: hidden;
        padding: 54px 14px 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;

    }

    .dl-badge {
        width: 56px;
        height: 56px;
        top: -7px;
    }

    .dl-badge .os-xp {
        width: 40px;
        height: 40px;
    }

    .dl-badge .os-win8 {
        width: 34px;
        height: 31px;
    }

    .dl-badge .os-apple {
        width: 42px;
        height: 39px;
    }

    .dl-title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 2px;
    }

    .dl-subtitle {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
        min-height: 0;
    }

    .dl-btn {
        width: 100%;
        max-width: 260px;
        height: 40px;
        font-size: 16px;
        border-width: 2px;
    }

    .dl-btn .btn-yellow__inner {
        transform: translateX(-10px);
    }

    .how-section {
        margin-top: 0;
        padding: 56px 0 120px;
        bottom: 0;
    }

    #how .section-title {
        margin-bottom: 80px;
    }

    .advantages-section {
        margin-top: -130px;
        padding: 56px 0 64px;
    }

    .adv-cards-bleed {
        width: 100%;
        margin-left: 0;
    }

    .adv-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 24px;
    }

    .adv-card--start,
    .adv-card--end,
    .adv-card--center {
        border-radius: 15px;
        align-items: center;
        padding: 28px 20px;
        min-height: 0;
    }

    .adv-card--start .adv-card__content,
    .adv-card--end .adv-card__content,
    .adv-card--center .adv-card__content {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 447px;
        padding-left: 0;
        padding-right: 0;
    }

    .features-section {
        padding: 64px 0;
    }

    .cta-section {
        padding: 56px 0;
    }

    .footer-bottom {
        gap: 24px;
    }

    .footer-copy {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 20px;
        line-height: 26px;
    }

    .hero-brand {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .hero-text {
        font-size: 16px;
        line-height: 22px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .cta-title {
        font-size: 22px;
        line-height: 28px;
    }

    .feat-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 16px;
        padding-top: 60px;
        min-height: 0;
    }

    .feat-badge {
        top: -15px;
        width: 52px;
        height: 52px;
    }

    .feat-badge img {
        height: 30px;
        max-width: 32px;
    }

    .feat-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .feat-text {
        font-size: 16px;
        line-height: 20px;
    }

    .features-section .row {
        --bs-gutter-y: 43px;
    }

    .adv-card--start .adv-card__content,
    .adv-card--end .adv-card__content {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .adv-icon {
        width: 100px;
        height: 86px;
        margin-bottom: 20px;
    }

    .adv-icon img {
        height: 86px;
        max-width: 100px;
    }

    .how-section {
        bottom: 40px;
    }
}

/* ============ Мобильные телефоны ============ */
@media (max-width: 575px) {
    .hero-btn {
        width: 100%;
        max-width: none;
        font-size: 16px;
        height: 48px;
        top: 16px;

    }

    .step-card {
        padding-top: 48px;
    }

    .footer-top .col-6 {
        width: 100%;
        max-width: 100%;
    }

    .footer-brand-col {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .header-phone span {
        display: none;
    }
}

@media (max-width: 425px) {
    :root {
        --header-h: 48px;
        --container-pad: 12px;
    }

    body {
        padding-top: var(--header-h);
    }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-header {
        height: auto;
        padding: 10px 0;
        border-bottom-width: 3px;
    }
    .mobile-menu__top{
        height: 51px;
    }
    .header-logo img {
        height: 28px;
        width: 33px;
    }

    .burger-btn {
        width: 28px;
        height: 28px;
        gap: 4px;
    }

    .burger-btn__line {
        height: 2px;
    }

    .mobile-menu {
        top: 0;
        padding: 0;
    }

    .mobile-menu__site {
        font-size: 13px;
    }

    .mobile-menu__phone {
        font-size: 12px;
        gap: 4px;
        margin-left: 18px;
    }

    .mobile-menu__phone img {
        width: 16px;
        height: 16px;
    }

    .mobile-menu__nav a {
        font-size: 15px;
    }

    .hero-top {
        padding-top: 15px;
    }

    .hero-title {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 10px;
    }

    .hero-brand {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-btn {
        font-size: 14px;
        height: 36px;
        margin-top: 0;
        top: 17px;
        border-radius: 5px;
        width: auto;
        padding: 0 17px;
    }

    .hero-bottom {
        padding: 36px 0 40px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .hero-text {
        font-size: 13px;
        line-height: 16px;
    }

    .section-title {
        margin-bottom: 24px;
    }

    #features .section-title {
        margin-bottom: 36px;
    }

    .download-section {
        padding-top: 28px;
    }

    .download-section .section-title {
        margin-bottom: 122px;
    }

    .download-band {
        padding-bottom: 32px;
    }

    #download .row {
        --bs-gutter-y: 33px;
        position: relative;
        bottom: 127px;
    }

    .dl-card {
        max-width: 100%;
        padding: 78px 12px 16px;
        overflow: visible;
        height: auto;
    }

    .dl-badge {
        width: 65px;
        height: 65px;
        top: -10px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    .dl-badge .os-xp {
        width: 46px;
        height: 46px;
    }

    .dl-badge .os-win8 {
        width: 41px;
        height: 37px;
    }

    .dl-badge .os-apple {
        width: 46px;
        height: 46px;
    }

    .dl-title {
        line-height: clamp(20px, calc(20px + ((100vw - 320px) * 25 / 105)), 45px);
        font-size: clamp(20px, calc(20px + ((100vw - 320px) * 15 / 105)), 35px);
    }

    .dl-subtitle {
        font-size: clamp(14px, calc(14px + ((100vw - 320px) * 12 / 105)), 24px);
        line-height: clamp(16px, calc(16px + ((100vw - 320px) * 8 / 105)), 24px);
        margin-bottom: 22px;
    }
    .hero .btn-yellow, #download .btn-yellow{
        border-radius: 5px;
    }
    .dl-btn {
        width: auto;
        height: 36px;
        font-size: clamp(15px, calc(15px + ((100vw - 320px) * 7 / 105)), 22px);
        box-shadow: none;
        padding: 0 44px;
    }

    .dl-btn .btn-yellow__inner {
        transform: translateX(-10px);
    }

    .btn-yellow__inner img{
        width: 15px;
        height: 15px;
    }

    .how-section {
        padding: 0 0 88px;
        bottom: 100px;
    }

    #how .section-title {
        margin-bottom: 68px;
    }
    .g-4{
        --bs-gutter-y: 3.6rem;
    }
    .step-card {
        padding: 44px 20px 28px;
    }

    .step-badge {
        width: 75px;
        height: 42px;
        top: -30px;
    }
    .step-badge-text{
        padding-top: 0;
        bottom: 1px;
    }
    .step-word {
        font-size: 16px;
    }

    .step-num {
        font-size: 20px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-text {
        font-size: 14px;
        line-height: 18px;
    }

    .advantages-section {
        padding: 0 0 48px;
    }

    .advantages-section .section-title {
        margin-bottom: 28px;
    }

    .adv-cards-grid {
        gap: 16px;
        padding: 0;

    }

    .adv-card {
        padding: 24px 16px;
        min-height: 0;
        border-radius: 0;
    }

    .adv-icon {
        width: 80px;
        height: 68px;
        margin-bottom: 14px;
    }

    .adv-icon img {
        height: 68px;
        max-width: 80px;
    }

    .adv-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .adv-box {
        min-height: 0;
        padding: 14px 12px;
    }

    .adv-box p {
        font-size: 13px;
        line-height: 16px;
    }

    .cta-section {
        padding: 60px 12px;
    }

    .cta-title {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    .cta-btn {
        height: 36px;
        padding: 0 28px;
        font-size: 18px;
        width: 100%;
        max-width: 147px;
        box-shadow: 0 0 0 3px var(--cta), 0 0 0 4px #bfa302, 0 0 0 8px var(--cta), 0 0 0 9px #b7931d, 0 0 0 13px var(--cta), 0 0 0 14px #ad8517;
        border-radius: 2px;
    }
    .cta-section::after{
        height: 6px;
        bottom: -10px;
    }
    .cta-section .btn-yellow__inner{
        transform: translateX(-8px);
    }

    .features-section {
        padding: 40px 0 48px;
    }

    .feat-card {
        padding: 20px 10px;
        padding-top: 40px;
    }

    .feat-badge {
        width: 32px;
        height: 32px;
    }

    .feat-badge img {
        height: 24px;
        max-width: 26px;
    }

    .feat-title {
        font-size: clamp(16px, calc(16px + ((100vw - 320px) * 2 / 105)), 18px);
    }

    .feat-text {
        font-size: clamp(14px, calc(14px + ((100vw - 320px) * 2 / 105)), 16px);
        line-height: clamp(15px, calc(15px + ((100vw - 320px) * 5 / 105)), 20px);
    }

    .site-footer {
        padding: 32px 0 24px;
    }

    .footer-logo {
        height: 52px;
        width: 62px;
    }

    .footer-brand {
        gap: 16px;
    }

    .footer-brand-text {
        font-size: 18px;
    }

    .footer-desc {
        font-size: 13px;
        line-height: 16px;
    }

    .footer-col-title {
        font-size: 15px;
    }

    .footer-list a,
    .footer-link,
    .footer-copy {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-divider {
        margin: 20px 0 14px;
    }

    .footer-top .row {
        text-align: center;
    }

    .footer-brand-col {
        margin-bottom: 20px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .footer-brand-info {
        align-items: center;
    }

    .footer-desc {
        max-width: none;
    }

    .footer-top [class*="col-"] {
        width: 100%;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .footer-col-title {
        margin-bottom: 10px;
    }

    .footer-list {
        margin-bottom: 0;
    }

    .footer-bottom {
        align-items: center;
        text-align: center;
    }

    .footer-link,
    .footer-copy {
        width: 100%;
    }
}
