:root {
    --bsr-red: #bc262c;
    --bsr-red-dark: #92000c;
    --bsr-yellow: #ffd800;
    --bsr-ink: #303030;
    --bsr-text: #4f5255;
    --bsr-muted: #7e8f97;
    --bsr-line: #dfe4e8;
    --bsr-soft: #f0f3f6;
    --bsr-white: #fff;
}

.bs-lead-card,
.bs-lead-card *,
.bs-mobile-home,
.bs-mobile-home * {
    box-sizing: border-box !important;
}

.bs-lead-card {
    width: 100%;
    max-width: 750px;
    margin: 18px auto 32px;
    padding: 26px;
    color: var(--bsr-text);
    background: var(--bsr-white);
    border: 1px solid var(--bsr-line);
    border-top: 5px solid var(--bsr-red);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(48, 48, 48, .09);
}

.bs-lead-card__title {
    margin: 0 0 20px !important;
    padding: 0 !important;
    color: var(--bsr-ink) !important;
    font: 700 25px/1.2 "PT Sans Narrow", Arial, sans-serif !important;
    text-align: center;
}

.bs-vehicle-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.bs-vehicle-switch__button {
    min-height: 48px;
    padding: 9px 12px;
    color: var(--bsr-text);
    font: 700 16px/1.15 "PT Sans Narrow", Arial, sans-serif;
    background: var(--bsr-white);
    border: 2px solid #c7cdd2;
    border-radius: 24px;
    cursor: pointer;
    transition: border-color .2s, background-color .2s, color .2s;
}

.bs-vehicle-switch__button small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 400;
}

.bs-vehicle-switch__button:hover,
.bs-vehicle-switch__button.is-active {
    color: var(--bsr-red-dark);
    background: #fff8d5;
    border-color: var(--bsr-yellow);
}

.bs-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bs-field {
    display: block;
    margin: 0;
    color: var(--bsr-text);
    font: 600 14px/1.3 "PT Sans Narrow", Arial, sans-serif;
}

.bs-field--wide {
    grid-column: 1 / -1;
}

.bs-field > span {
    display: block;
    margin-bottom: 5px;
}

.bs-field b {
    color: var(--bsr-red);
}

.bs-field input,
.bs-field textarea {
    display: block;
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 10px 13px;
    color: var(--bsr-ink);
    font: 16px/1.3 "PT Sans Narrow", Arial, sans-serif;
    background: #fafbfc;
    border: 1px solid #c7cdd2;
    border-radius: 9px;
    box-shadow: none;
    outline: none;
}

.bs-field textarea {
    min-height: 78px;
    resize: vertical;
}

.bs-field input:focus,
.bs-field textarea:focus {
    border-color: var(--bsr-red);
    box-shadow: 0 0 0 3px rgba(188, 38, 44, .12);
}

.bs-field.has-error input,
.bs-field.has-error textarea {
    border-color: var(--bsr-red) !important;
    background: #fff7f7;
}

.bs-submit,
.bs-calc__submit {
    display: block;
    width: 100%;
    min-height: 48px;
    margin: 18px 0 0;
    padding: 11px 20px !important;
    color: var(--bsr-ink) !important;
    font: 800 17px/1.2 "PT Sans Narrow", Arial, sans-serif !important;
    background: var(--bsr-yellow) !important;
    border: 0 !important;
    border-radius: 24px !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: transform .2s, filter .2s;
}

.bs-submit:hover,
.bs-calc__submit:hover {
    filter: brightness(.96);
    transform: translateY(-1px);
}

.bs-submit:disabled {
    cursor: wait;
    opacity: .65;
}

.bs-form-status {
    display: none;
    margin: 14px 0 0;
    padding: 10px 12px;
    color: var(--bsr-text);
    font-size: 14px;
    text-align: center;
    background: var(--bsr-soft);
    border-radius: 8px;
}

.bs-form-status.is-visible {
    display: block;
}

.bs-form-status.is-success {
    color: #24623b;
    background: #eaf7ef;
}

.bs-form-status.is-error {
    color: var(--bsr-red-dark);
    background: #fff0f0;
}

.bs-form-note {
    margin: 10px 0 0;
    color: var(--bsr-muted);
    font-size: 12px;
    text-align: center;
}

/* Forms added below the existing page H1 follow the original BusStar palette. */
.bs-lead-card--desktop-home,
.bs-lead-card--catalog {
    max-width: none;
    margin: 18px 0 32px;
    padding: 26px 30px 34px;
    color: #fff;
    background: #2f353c url("/images/index-form-bottom-decor.png") 0 100% repeat-x;
    border: 0;
    border-top: 5px solid var(--bsr-red);
    border-radius: 3px;
    box-shadow: none;
}

.bs-lead-card--desktop-home .bs-lead-card__title,
.bs-lead-card--catalog .bs-lead-card__title {
    color: #f22 !important;
}

.bs-lead-card--desktop-home .bs-field,
.bs-lead-card--catalog .bs-field {
    color: #fff;
}

.bs-lead-card--desktop-home .bs-field input,
.bs-lead-card--desktop-home .bs-field textarea,
.bs-lead-card--catalog .bs-field input,
.bs-lead-card--catalog .bs-field textarea {
    color: var(--bsr-text);
    background: #ececec;
    border: 0;
    border-radius: 3px;
    box-shadow: inset 2px 3px 0 #c9c9c9;
}

.bs-lead-card--desktop-home .bs-field input:focus,
.bs-lead-card--desktop-home .bs-field textarea:focus,
.bs-lead-card--catalog .bs-field input:focus,
.bs-lead-card--catalog .bs-field textarea:focus {
    background: #fff;
    box-shadow: inset 2px 3px 0 #868686, 0 0 0 2px rgba(255, 34, 34, .28);
}

.bs-lead-card--desktop-home .bs-vehicle-switch__button,
.bs-lead-card--catalog .bs-vehicle-switch__button {
    color: #fff;
    background: #3f474e;
    border-color: #59626a;
    border-radius: 3px;
}

.bs-lead-card--desktop-home .bs-vehicle-switch__button:hover,
.bs-lead-card--desktop-home .bs-vehicle-switch__button.is-active,
.bs-lead-card--catalog .bs-vehicle-switch__button:hover,
.bs-lead-card--catalog .bs-vehicle-switch__button.is-active {
    color: #fff;
    background: linear-gradient(#ed3a40, #ad0a15);
    border-color: #f22;
}

.bs-lead-card--desktop-home .bs-submit,
.bs-lead-card--catalog .bs-submit {
    color: #fff !important;
    background: linear-gradient(#ed3a40, #ad0a15) !important;
    border-radius: 3px !important;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, .34) !important;
}

.bs-lead-card--desktop-home .bs-form-note,
.bs-lead-card--catalog .bs-form-note {
    color: #aeb8bf;
}

@media (min-width: 701px) {
    .bs-lead-card--desktop-home .bs-form-grid,
    .bs-lead-card--catalog .bs-form-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.bs-mobile-home {
    display: none;
}

.bs-mobile-logo-sub,
.bs-mobile-contacts-link {
    display: none;
}

.bs-order-modal {
    display: none;
}

@media (max-width: 700px) {
    .bs-lead-card {
        margin: 14px 0 24px;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .auto-park-container > .bs-lead-card--catalog {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .bs-lead-card__title {
        font-size: 23px !important;
    }

    .bs-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bs-field--wide {
        grid-column: auto;
    }

    .bs-vehicle-switch__button {
        padding: 8px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    /* Legacy inner pages use 100% widths together with 20px side padding and
       content-box sizing. The page-level overflow rule then hides the extra
       40px, which looks like cropped text instead of a scrollbar. */
    body:not(.index-page),
    body:not(.index-page) .wrapper {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    body:not(.index-page) .wrapper,
    body:not(.index-page) .wrapper * {
        box-sizing: border-box !important;
    }

    body:not(.index-page) .header,
    body:not(.index-page) .header-wrin,
    body:not(.index-page) .header.topmen .header-wrin,
    body:not(.index-page) .content-container,
    body:not(.index-page) .auto-park-container,
    body:not(.index-page) .bus-detail-container,
    body:not(.index-page) .clients-container,
    body:not(.index-page) .review-list,
    body:not(.index-page) .text-main {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body:not(.index-page) .auto-park-container,
    body:not(.index-page) .content-container,
    body:not(.index-page) .bus-detail-container,
    body:not(.index-page) .clients-container,
    body:not(.index-page) .review-list {
        padding-left: 20px;
        padding-right: 20px;
    }

    body:not(.index-page) .auto-park-container .items {
        width: 100% !important;
        max-width: 100%;
        margin-left: 0 !important;
    }

    body:not(.index-page) .auto-park-container .items li,
    body:not(.index-page) .clients-container .clients-list,
    body:not(.index-page) .clients-container .clients-list li > div.text {
        width: 100% !important;
        max-width: 100%;
    }

    body:not(.index-page) .review-list li {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    body:not(.index-page) .review-list li img {
        float: none;
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0 0 12px;
    }

    body:not(.index-page) .auto-park-container img,
    body:not(.index-page) .content-container img,
    body:not(.index-page) .bus-detail-container img,
    body:not(.index-page) .clients-container img,
    body:not(.index-page) .review-list img,
    body:not(.index-page) iframe,
    body:not(.index-page) video {
        max-width: 100% !important;
        height: auto !important;
    }

    body:not(.index-page) table {
        width: 100% !important;
        max-width: 100%;
        table-layout: fixed;
    }

    body:not(.index-page) table col,
    body:not(.index-page) table colgroup,
    body:not(.index-page) table th,
    body:not(.index-page) table td {
        width: auto !important;
        min-width: 0 !important;
    }

    body:not(.index-page) table th,
    body:not(.index-page) table td {
        padding-left: 6px !important;
        padding-right: 6px !important;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    body:not(.index-page) .auto-park-container-text,
    body:not(.index-page) .content-container,
    body:not(.index-page) .bus-detail-container,
    body:not(.index-page) .clients-container,
    body:not(.index-page) .review-list {
        overflow-wrap: anywhere;
    }

    body.bs-modal-open {
        overflow: hidden !important;
    }

    .bs-order-modal.is-open {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 12px;
    }

    .bs-order-modal__backdrop {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        background: rgba(20, 24, 28, .72);
        border: 0;
    }

    .bs-order-modal__dialog {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 460px;
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);
        overflow-y: auto;
        background: var(--bsr-white);
        border-radius: 24px 24px 18px 18px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
    }

    .bs-order-modal__close {
        position: absolute;
        top: 10px;
        right: 12px;
        z-index: 2;
        width: 38px;
        height: 38px;
        padding: 0;
        color: var(--bsr-ink);
        font: 32px/34px Arial, sans-serif;
        background: var(--bsr-soft);
        border: 0;
        border-radius: 50%;
        cursor: pointer;
    }

    .bs-order-modal .bs-lead-card {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 24px 16px 20px;
        border: 0;
        border-top: 5px solid var(--bsr-red);
        border-radius: 24px 24px 18px 18px;
        box-shadow: none;
    }

    .bs-order-modal .bs-lead-card__title {
        padding: 0 42px !important;
    }

    html,
    body.index-page {
        max-width: 100%;
        overflow-x: hidden;
    }

    body.index-page {
        width: 100%;
        min-width: 0;
        color: var(--bsr-text);
        background: var(--bsr-white);
    }

    body.index-page .wrapper {
        width: 100%;
        overflow: visible;
    }

    body.index-page .header-wr {
        position: sticky;
        top: 0;
        z-index: 100;
        height: auto !important;
        padding: 0;
        background: var(--bsr-white);
        border-bottom: 1px solid var(--bsr-line);
    }

    body.index-page .header,
    body.index-page .header.topmen {
        box-sizing: border-box !important;
        position: static !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 12px 14px 10px;
        background: var(--bsr-white) !important;
        box-shadow: 0 3px 14px rgba(48, 48, 48, .08);
    }

    body.index-page .header-wrin,
    body.index-page .header.topmen .header-wrin {
        box-sizing: border-box !important;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px 12px;
        width: 100% !important;
        height: auto !important;
        min-height: 0;
        margin: 0;
    }

    body.index-page .header .logo {
        grid-column: 1;
        grid-row: 1;
        box-sizing: border-box !important;
        position: static;
        display: block;
        width: 100px;
        height: 42px !important;
        margin: 0;
        background-position: left center !important;
        background-repeat: no-repeat !important;
        background-size: contain !important;
    }

    body.index-page .header .phone {
        grid-column: 2;
        grid-row: 1;
        box-sizing: border-box !important;
        position: static;
        justify-self: end;
        width: 100% !important;
        height: auto !important;
        min-width: 0;
        padding: 0 !important;
        font-size: 16px;
        line-height: 1.2 !important;
        text-align: right;
        background: none !important;
    }

    body.index-page .header .phone a {
        display: block;
        color: var(--bsr-red-dark) !important;
        font-size: 16px !important;
        line-height: 1.2 !important;
        text-decoration: none !important;
        white-space: nowrap;
    }

    body.index-page .header .phone strong {
        font-size: inherit !important;
        font-weight: 700;
    }

    body.index-page .header .phone .sales,
    body.index-page .header .phone br {
        display: none !important;
    }

    body.index-page .header .bs-mobile-logo-sub {
        grid-column: 1;
        grid-row: 2;
        display: block !important;
        color: #555;
        font: 400 12px/1.3 Inter, Arial, sans-serif;
    }

    body.index-page .header .bs-mobile-contacts-link {
        grid-column: 2;
        grid-row: 2;
        display: block !important;
        justify-self: end;
        color: var(--bsr-red) !important;
        font: 600 14px/1.3 Inter, Arial, sans-serif;
        text-decoration: none;
    }

    body.index-page .header .header-wrin > nav:first-of-type {
        grid-column: 1 / -1;
        position: static;
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    body.index-page .header .header-wrin > nav:first-of-type::-webkit-scrollbar {
        display: none;
    }

    body.index-page .header .header-wrin > nav:first-of-type ul {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 16px;
        width: max-content;
        margin: 0;
        padding: 5px 0 0;
    }

    body.index-page .header .header-wrin > nav:first-of-type li {
        float: none;
        margin: 0;
    }

    body.index-page .header .header-wrin > nav:first-of-type a {
        color: var(--bsr-text) !important;
        font-size: 14px;
        white-space: nowrap;
    }

    body.index-page .header .header-wrin > nav:last-of-type,
    body.index-page .header .header-wrin > nav:first-of-type,
    body.index-page .header .calc-container,
    body.index-page .index-slider-container,
    body.index-page .index-bottom-text,
    body.index-page .auto-park-container-text,
    body.index-page .wrapper > .form-request-container,
    body.index-page .text-main,
    body.index-page .footer-place {
        display: none !important;
    }

    .bs-mobile-home {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        color: var(--bsr-text);
        background: var(--bsr-white);
        font-family: Inter, Arial, sans-serif;
    }

    .bs-mobile-home__section {
        padding: 48px 20px 40px;
    }

    .bs-mobile-home__section:nth-child(even) {
        background: var(--bsr-soft);
    }

    .bs-mobile-home__hero {
        padding-top: 48px;
        padding-bottom: 56px;
        background: var(--bsr-white);
        border-bottom: 4px solid var(--bsr-red);
    }

    .bs-mobile-home__eyebrow {
        margin: 0 0 7px;
        color: var(--bsr-red);
        font-size: 14px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .bs-mobile-home h1 {
        margin: 0 0 16px;
        padding: 0;
        color: var(--bsr-ink);
        font-size: 34px;
        font-weight: 800;
        line-height: 1.2;
        text-align: left;
    }

    .bs-mobile-home h1 span {
        color: var(--bsr-red);
    }

    .bs-mobile-home__intro {
        max-width: 480px;
        margin: 0 0 24px;
        color: var(--bsr-text);
        font-size: 18px;
        line-height: 1.5;
    }

    .bs-mobile-home__features {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 24px;
        margin: 0 0 28px;
        padding: 0;
        list-style: none;
    }

    .bs-mobile-home__features li {
        position: relative;
        display: flex;
        align-items: center;
        flex: 1 1 145px;
        margin: 0;
        padding: 0 0 0 28px;
        color: var(--bsr-ink);
        font-size: 15px;
        font-weight: 500;
    }

    .bs-mobile-home__features li::before {
        position: absolute;
        top: 0;
        left: 0;
        color: var(--bsr-red);
        content: "✓";
        font-size: 18px;
        line-height: 1;
        font-weight: 900;
    }

    .bs-mobile-home .bs-lead-card {
        margin-top: 0;
        padding: 20px 16px;
        border-radius: 24px;
        box-shadow: 0 12px 40px rgba(48, 48, 48, .09);
    }

    .bs-mobile-home .bs-lead-card__title,
    .bs-mobile-home .bs-vehicle-switch__button,
    .bs-mobile-home .bs-field,
    .bs-mobile-home .bs-field input,
    .bs-mobile-home .bs-field textarea,
    .bs-mobile-home .bs-submit,
    .bs-mobile-home .bs-calc__submit {
        font-family: Inter, Arial, sans-serif !important;
    }

    .bs-mobile-home__title {
        margin: 0 0 8px;
        color: var(--bsr-ink);
        font-size: 32px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
    }

    .bs-mobile-home__subtitle {
        margin: 0 0 28px;
        color: #555;
        font-size: 17px;
        line-height: 1.5;
        text-align: center;
    }

    .bs-calc {
        padding: 20px 16px;
        background: var(--bsr-white);
        border: 1px solid var(--bsr-line);
        border-radius: 24px;
    }

    .bs-calc .bs-field {
        margin-top: 12px;
    }

    .bs-calc__result {
        display: none;
        margin: 14px 0 0;
        padding: 13px;
        color: var(--bsr-ink);
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        background: #fff8d5;
        border-radius: 10px;
    }

    .bs-calc__result.is-visible {
        display: block;
    }

    .bs-calc__warning {
        display: block;
        margin-top: 4px;
        color: var(--bsr-red-dark);
        font-size: 13px;
        font-weight: 600;
    }

    .bs-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 20px;
        margin: 20px 0 0;
        padding: 0;
        list-style: none;
    }

    .bs-categories a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 122px;
        padding: 24px 16px;
        color: var(--bsr-ink);
        font-size: 16px;
        font-weight: 600;
        line-height: 1.25;
        text-align: center;
        text-decoration: none;
        background: var(--bsr-white);
        border: 1px solid var(--bsr-line);
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(48, 48, 48, .03);
    }

    .bs-categories a span {
        display: block;
        margin-bottom: 8px;
        color: var(--bsr-red);
        font-size: 36px;
        line-height: 1;
    }

    .bs-mobile-fleet-slot .auto-park-container,
    .bs-mobile-fleet-slot .auto-park-container-main {
        display: block !important;
        width: 100%;
        margin: 0 !important;
        padding: 0;
    }

    .bs-mobile-fleet-slot .auto-park-container > .hr,
    .bs-mobile-fleet-slot .auto-park-container > p,
    .bs-mobile-fleet-slot .auto-park-container > h1 {
        display: none;
    }

    .bs-mobile-fleet-slot .auto-park-container .items {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
        width: 100%;
        margin: 20px 0 0;
        padding: 0;
    }

    .bs-mobile-fleet-slot .auto-park-container .items li {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 20px 20px 24px;
        color: var(--bsr-text);
        text-align: left;
        background: var(--bsr-white);
        border: 1px solid var(--bsr-line);
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(48, 48, 48, .03);
    }

    .bs-mobile-fleet-slot .items li > span,
    .bs-mobile-fleet-slot .items li > span > span {
        box-sizing: border-box;
    }

    .bs-mobile-fleet-slot .items .name {
        order: 3;
        display: block;
        margin: 0 0 4px;
        padding: 0;
        color: var(--bsr-ink);
        font-size: 18px;
        line-height: 1.35;
        text-align: left;
    }

    .bs-mobile-fleet-slot .items .name a {
        color: var(--bsr-ink);
        text-decoration: none;
    }

    .bs-mobile-fleet-slot .items li > span > a:not(.btn),
    .bs-mobile-fleet-slot .items li > a:not(.btn) {
        order: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 160px;
        margin: 0 0 12px;
        overflow: hidden;
        background: #f0f3f6;
        border-radius: 12px;
    }

    .bs-mobile-fleet-slot .items img {
        display: block;
        width: 100%;
        height: 160px;
        object-fit: contain;
    }

    .bs-mobile-fleet-slot .items .places {
        order: 4;
        position: static;
        display: block;
        width: auto;
        height: auto;
        margin: 0 0 10px;
        color: var(--bsr-muted);
        font-size: 14px;
        background: none;
    }

    .bs-mobile-fleet-slot .items .places span,
    .bs-mobile-fleet-slot .items .places strong {
        display: inline;
        padding: 0;
        font-size: inherit;
        line-height: inherit;
    }

    .bs-mobile-fleet-slot .items .number {
        order: 5;
        display: block;
        margin-top: auto;
        padding: 12px 0 0;
        color: var(--bsr-ink);
        font-size: 0;
        font-weight: 700;
        text-align: left;
    }

    .bs-mobile-fleet-slot .items .number .left {
        display: block;
        font-size: 22px;
    }

    .bs-mobile-fleet-slot .items li > span[itemprop="offers"] {
        display: none;
    }

    .bs-mobile-fleet-slot .items .btn.slope {
        order: 6;
        position: static;
        display: block;
        width: 100%;
        height: auto;
        margin-top: 12px;
        padding: 11px 14px !important;
        color: var(--bsr-ink) !important;
        font-size: 15px;
        font-weight: 700;
        font-style: normal;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
        background: var(--bsr-yellow) !important;
        border-radius: 40px;
    }

    .bs-mobile-fleet-slot .items .btn.slope span {
        display: inline;
    }

    .bs-mobile-home__seo {
        color: var(--bsr-text);
        font-size: 15px;
        line-height: 1.55;
    }

    .bs-mobile-home__seo h2,
    .bs-mobile-home__seo h3 {
        margin: 20px 0 8px;
        color: var(--bsr-ink);
        font-size: 22px;
        line-height: 1.2;
    }

    .bs-mobile-home__seo ul,
    .bs-mobile-home__seo ol {
        margin: 0 0 18px;
        padding-left: 24px;
        list-style-position: outside;
    }

    .bs-mobile-home__seo ul {
        list-style-type: disc;
    }

    .bs-mobile-home__seo ol {
        list-style-type: decimal;
    }

    .bs-mobile-home__seo li {
        margin: 0 0 6px;
        padding-left: 2px;
    }

    .bs-mobile-home__seo img {
        display: block;
        float: none !important;
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 12px auto !important;
    }

    body.index-page .footer {
        width: 100%;
        min-width: 0;
        padding-top: 28px;
        background: #2f353c;
        box-sizing: border-box;
    }

    body.index-page .footer .inner {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 16px !important;
    }

    body.index-page .footer #share-fixed,
    body.index-page .footer .toggleFooter {
        display: none !important;
    }

    body.index-page .footer #footerMenu {
        display: block !important;
        margin: 0 0 30px;
        padding: 0 0 24px;
        border-bottom: 1px solid #444;
    }

    body.index-page .footer #footerMenu nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }

    body.index-page .footer #footerMenu ul {
        float: none;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: left;
    }

    body.index-page .footer #footerMenu li {
        margin: 0 0 8px;
        padding: 0;
        line-height: 1.35;
    }

    body.index-page .footer #footerMenu a {
        color: #d0d0d0;
        font: 400 13px/1.35 Inter, Arial, sans-serif;
        text-decoration: none;
    }

    body.index-page .footer #copyright {
        box-sizing: border-box;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        color: #d8dde1;
        text-align: center;
    }

    body.index-page .footer #copyright img {
        position: static !important;
        display: block !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto 12px !important;
    }
}

@media (max-width: 360px) {
    .bs-mobile-home__features,
    .bs-categories {
        grid-template-columns: 1fr;
    }

    body.index-page .footer #footerMenu nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .bs-mobile-home h1 {
        font-size: 28px;
    }

    .bs-mobile-home__title {
        font-size: 26px;
    }

    body.index-page .footer #footerMenu nav {
        grid-template-columns: 1fr;
    }

    body.index-page .footer #footerMenu ul {
        text-align: center;
    }
}
