html {
    scroll-behavior: smooth;
}

body {
    background-color: #f7f7f7;
}

.page-head {
    display: none !important;
}

.page-head--dark ~ .main-page-cover,
.main-cover.main-page-cover {
    margin-top: 0 !important;
}

.leasing-page {
    font-family: 'Inter', 'Roboto', sans-serif;
    max-width: 1255px;
    margin: 0 auto;
}

.leasing-page button,
.leasing-page input,
.leasing-page select,
.leasing-page textarea {
    font-family: inherit;
}

.leasing-page__head {
    display: flex;
    flex-direction: column;
    padding: clamp(12px, 4vw, 30px) clamp(10px, 5vw, 40px);
    gap: 20px;
    margin-top: 5px;
}

.leasing-page__head .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    list-style: none;
    font-size: 16px;
    line-height: 1.3;
}

.leasing-page__head .breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #636c78;
}

.leasing-page__head .breadcrumb__link {
    color: #636c78;
    text-decoration: none;
    transition: color .2s ease;
}

.leasing-page__head .breadcrumb__link:hover {
    color: #ec6910;
    text-decoration: none;
}

.leasing-page__head .breadcrumb__separator {
    color: #636c78;
}

.leasing-page__head .breadcrumb__item:last-child .breadcrumb__text {
    text-transform: none;
}

.leasing-page__title {
    margin: 0;
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

.liga-outlet-link {
    display: none !important;
}

[id="compare_list_count"],
.faq-old,
.section.section-viewed.js-slider-nav-event {
    display: none !important;
}

.footer {
    margin-top: 0 !important;
}

.leasing-outlet {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 36px;
    margin: 24px 0;
    padding: 0 20px;
    border-radius: 18px;
    background-color: #ec6910;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 6px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: background-color .2s ease;
}

.leasing-outlet:hover,
.leasing-outlet:focus-visible {
    background-color: #d45c0b;
    color: #fff;
    text-decoration: none;
}

.leasing-outlet__separator {
    flex: 0 0 auto;
    width: 2px;
    height: 15px;
    background-color: #fff;
}

.leasing .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.leasing {
    background: #fff;
    border-radius: 10px;
    padding: 35px 38px 36px;
    color: #636363;
    line-height: 1.32;
}

.leasing-section {
    margin-top: 46px;
    scroll-margin-top: 20px;
}

#leasing-calculator {
    scroll-margin-top: 100px;
}

.leasing > .leasing-section:first-child {
    margin-top: 0;
}

.leasing-head {
    margin-bottom: 22px;
}

.leasing-head__title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

.leasing-head__title--blue {
    color: #1d4e8c;
}

.leasing-head__subtitle {
    margin: 14px 0 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    color: #636363;
}

.leasing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    min-height: 48px;
    padding: 9px 32px;
    border: 2px solid transparent;
    border-radius: 45.5px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}

.leasing-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.leasing-btn[disabled] {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.leasing-btn[disabled]:hover {
    transform: none;
}

.leasing-btn.is-loading {
    opacity: .6;
    pointer-events: none;
    transform: none;
}

@property --leasing-btn-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.leasing-btn--primary {
    position: relative;
    z-index: 1;
    background: #ec6910;
    color: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
}

.leasing-btn--primary:hover {
    background: transparent;
    color: #ec6910;
}

.leasing-btn--primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -2;
    border-radius: 45.5px;
    background: conic-gradient(
            from var(--leasing-btn-angle),
            #ffffff 0deg,
            #ffffff 20deg,
            #fffaf5 30deg,
            #fee9d6 40deg,
            #fdd9be 60deg,
            #fbc08e 90deg,
            #f9a96a 110deg,
            #ec6910 130deg,
            #ec6910 230deg,
            #f9a96a 250deg,
            #fbc08e 270deg,
            #fdd9be 300deg,
            #fee9d6 320deg,
            #fffaf5 330deg,
            #ffffff 340deg,
            #ffffff 360deg
    );
    opacity: 0;
    transition: opacity .3s ease;
}

.leasing-btn--primary::after {
    content: '';
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: 45.5px;
    background: #ec6910;
    transition: background-color .3s ease;
}

.leasing-btn--primary:hover::before {
    opacity: 1;
    animation: leasing-btn-rotate 3s linear infinite;
}

.leasing-btn--primary:hover::after {
    background: #fff;
}

.leasing-btn--primary[disabled]:hover {
    background: #ec6910;
    color: #fff;
}

.leasing-btn--primary[disabled]:hover::before {
    opacity: 0;
    animation: none;
}

.leasing-btn--primary[disabled]:hover::after {
    background: #ec6910;
}

@keyframes leasing-btn-rotate {
    from { --leasing-btn-angle: 0deg; }
    to { --leasing-btn-angle: 360deg; }
}

.leasing-btn--outline {
    background: #fff;
    border-color: #ec6910;
    color: #636363;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}

.leasing-btn--outline:hover {
    background: #ec6910;
    color: #fff;
}

.leasing-btn--outline:hover .leasing-btn__icon {
    filter: brightness(0) invert(1);
}

.leasing-btn--on-blue {
    border-color: #fff;
}

.leasing-btn--sm {
    min-height: 36px;
    padding-block: 0;
    gap: 0;
}

.leasing-btn--block {
    width: 100%;
}

.leasing-btn__icon {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
    transform: rotate(90deg);
}

.leasing-tabs__strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 25px 31px 25px 27px;
    border-radius: 18px;
    background: linear-gradient(177.78deg, #0e6be2 4.163%, #1d4e8c 46.445%, #244369 95.837%);
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
}

.leasing-tab {
    position: relative;
    display: block;
    min-height: 122px;
    padding: 15px 25px 20px;
    border: 0;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .1);
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
    color: #fff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: color .15s ease .15s;
}

.leasing-tab__fill {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-color: transparent;
    pointer-events: none;
    transition: background-color .15s ease .15s;
}

.leasing-tab__title {
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    transition: color .15s ease .15s;
}

.leasing-tab__text {
    position: relative;
    display: block;
    margin-top: 5px;
    font-size: 16px;
    line-height: 21px;
    white-space: pre-line;
}

.leasing-tab__arrow {
    display: inline-block;
    margin-left: 8px;
    vertical-align: -1px;
    transform: rotate(90deg);
    filter: brightness(0) invert(1);
    transition: filter .15s ease .15s;
}

.leasing-tab__pointer {
    position: absolute;
    top: calc(100% - 14px);
    left: 50%;
    width: 50px;
    height: 39px;
    margin-left: -25px;
    background-color: #fff;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: scaleY(0);
    transform-origin: 50% 14px;
    pointer-events: none;
    transition: transform .15s ease;
}

.leasing-tab.is-active {
    color: #636363;
    transition-delay: 0s;
}

.leasing-tab.is-active .leasing-tab__fill {
    background-color: #fff;
    transition-delay: 0s;
}

.leasing-tab.is-active .leasing-tab__title {
    color: #1d4e8c;
    transition-delay: 0s;
}

.leasing-tab.is-active .leasing-tab__arrow {
    filter: none;
    transition-delay: 0s;
}

.leasing-tab.is-active .leasing-tab__pointer {
    transform: scaleY(1);
    transition: transform .2s cubic-bezier(.2, .85, .3, 1) .15s;
}

.leasing-tabs__panel {
    min-height: 339px;
    margin-top: 25px;
    padding: 25px 26px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
    transition: opacity .35s ease, transform .35s cubic-bezier(.2, .85, .3, 1);
}

.leasing-tabs__panel.is-leaving {
    opacity: 0;
    transition: opacity .25s ease;
}

.leasing-tabs__panel.is-entering {
    opacity: 0;
    transform: translateY(8px);
}

.leasing-tabs__panel[hidden] {
    display: none;
}

.leasing-tabs__heading {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #1d4e8c;
    text-transform: uppercase;
}

.leasing-tabs__lead {
    margin: 12px 0 0;
    font-size: 24px;
    line-height: 1.2;
    color: #636363;
    white-space: pre-line;
}

.leasing-tabs__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 26px;
}

.leasing-tabs__col {
    position: relative;
    padding-left: 15px;
}

.leasing-tabs__col::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    border-radius: 1.5px;
    background: #ec6910;
}

.leasing-tabs__col-title {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.32;
    color: #ec6910;
}

.leasing-tabs__col-text {
    margin: 4px 0 0;
    font-size: 20px;
    line-height: 1.32;
    color: #636363;
    white-space: pre-line;
}

.leasing-tabs__note {
    margin: 25px 0 0;
    font-size: 16px;
    line-height: 1.3;
    color: #636363;
    white-space: pre-line;
}

.leasing-programs {
    display: grid;
    grid-template-columns: repeat(3, 263fr) 339fr;
    gap: 14px;
}

.leasing-program {
    display: flex;
    flex-direction: column;
    min-height: 251px;
    padding: 26px 23px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
}

.leasing-program__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.32;
    text-transform: uppercase;
    color: #1d4e8c;
}

.leasing-program__text {
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 1.32;
}

.leasing-program__action {
    margin-top: auto;
    padding-top: 8px;
}

.leasing-programs__calc {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 251px;
    padding: 26px 25px 28px;
    border-radius: 10px;
    background: #ec6910;
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
    text-align: center;
}

.leasing-programs__calc-icon {
    position: relative;
    width: 75px;
    height: 100px;
    margin: 0 auto auto;
    overflow: hidden;
}

.leasing-programs__calc-icon img {
    position: absolute;
    top: -57.32%;
    left: -98.36%;
    width: 296.72%;
    height: 220.73%;
    max-width: none;
}

.leasing-programs__calc-title {
    margin: 14px 0 9px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.32;
    text-transform: uppercase;
    color: #fff;
}

.leasing-benefits {
    display: grid;
    grid-template-columns: 395fr 395fr 339fr;
    gap: 25px;
}

.leasing-benefit {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 25px 25px 21px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
    overflow: hidden;
}

.leasing-benefit__tag {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.32;
    text-transform: uppercase;
    color: #d9d9d9;
}

.leasing-benefit__body {
    margin-top: 167px;
}

.leasing-benefit__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.32;
    text-transform: uppercase;
    color: #636363;
}

.leasing-benefit__accent {
    color: #ec6910;
}

.leasing-benefit__text {
    margin: 14px 0 0;
    font-size: 20px;
    line-height: 1.32;
}

.leasing-benefit__media {
    position: absolute;
    overflow: hidden;
    pointer-events: none;
}

.leasing-benefit__media img {
    position: absolute;
    max-width: none;
}

.leasing-benefit--tax .leasing-benefit__media {
    top: 24px;
    left: -7px;
    width: 212px;
    height: 212px;
}

.leasing-benefit--tax .leasing-benefit__media img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leasing-benefit--growth .leasing-benefit__media {
    top: 33px;
    left: 20px;
    width: 180px;
    height: 172px;
}

.leasing-benefit--growth .leasing-benefit__media img {
    top: -13.37%;
    left: -12.78%;
    width: 125.56%;
    height: 131.4%;
}

.leasing-benefit--approach .leasing-benefit__media {
    top: 63px;
    left: 25px;
    width: 222px;
    height: 132px;
}

.leasing-benefit--approach .leasing-benefit__media img {
    top: -39.36%;
    left: -5.66%;
    width: 109.43%;
    height: 185.11%;
}

.leasing-benefit--advance .leasing-benefit__media {
    top: 56px;
    left: 17px;
    width: 177px;
    height: 149px;
}

.leasing-benefit--advance .leasing-benefit__media img {
    top: -264.16%;
    left: -167.98%;
    width: 437.46%;
    height: 389.25%;
}

.leasing-steps {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border-radius: 10px;
    background: linear-gradient(147.78deg, #0e6be2 4.163%, #1d4e8c 46.445%, #244369 95.837%);
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
    color: #fff;
    isolation: isolate;
}

.leasing-steps__media {
    position: relative;
    width: 223px;
    height: 219px;
    margin: 0 auto;
    overflow: hidden;
    filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .25));
}

.leasing-steps__media img {
    position: absolute;
    top: -8.53%;
    left: -7.69%;
    width: 112.04%;
    height: 114.33%;
    max-width: none;
}

.leasing-steps__list {
    display: grid;
    gap: 32px;
    margin: 39px 0 0;
    padding: 0;
    list-style: none;
}

.leasing-steps__item {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 16px;
    align-items: start;
}

.leasing-steps__num {
    position: relative;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.leasing-steps__num::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 5px;
    background: #fff;
    mix-blend-mode: overlay;
}

@supports not (mix-blend-mode: overlay) {
    .leasing-steps__num {
        background: rgba(255, 255, 255, .25);
        border-radius: 5px;
    }

    .leasing-steps__num::before {
        display: none;
    }
}

.leasing-steps__title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.32;
    text-transform: uppercase;
}

.leasing-steps__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.32;
    color: rgba(255, 255, 255, .92);
}

.leasing-steps__action {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding-top: 28px;
}

.leasing-calc__panel {
    padding: 25px 31px 25px 28px;
    border-radius: 18px;
    background: linear-gradient(173.34deg, #0e6be2 4.163%, #1d4e8c 46.445%, #244369 95.837%);
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
}

.leasing-calc__title {
    margin: 0 0 25px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}

.leasing-calc__grid {
    display: grid;
    grid-template-columns: 549fr 548fr;
    gap: 24px;
    align-items: start;
}

.leasing-calc__form {
    min-height: 406px;
    padding: 25px 25px 25px 32px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
}

.leasing-calc__legend {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #1d4e8c;
}

.leasing-calc__hint {
    margin: 5px 0 0;
    font-size: 16px;
    line-height: 1.25;
}

.leasing-calc__field {
    margin-top: 18px;
}

.leasing-calc__label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    color: #636363;
}

.leasing-calc__label-note {
    font-weight: 400;
    color: #d9d9d9;
}

.leasing-calc__control {
    position: relative;
    margin-top: 6px;
}

.leasing-calc__input {
    width: 100%;
    height: 42px;
    padding: 0 40px 0 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    background: #fff;
    font-family: inherit;
    font-size: 20px;
    font-weight: 900;
    color: #636363;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.leasing-calc__input:focus {
    border-color: #1d4e8c;
}

.leasing-calc__currency {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    color: #636363;
    pointer-events: none;
}

.leasing-calc__terms {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 12px;
}

.leasing-calc__term {
    height: 42px;
    padding: 0;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    background: #fff;
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    color: #636363;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.leasing-calc__term:hover {
    border-color: #1d4e8c;
}

.leasing-calc__term.is-active {
    border-color: #1d4e8c;
    background: #1d4e8c;
    color: #fff;
}

.leasing-calc__note {
    margin: 20px 0 0;
    font-size: 12px;
    line-height: 1.34;
}

.leasing-calc__results {
    min-height: 406px;
    padding: 24px 31px 24px 25px;
    border: 1px solid rgba(155, 200, 250, .32);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .135));
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
    color: #fff;
}

.leasing-calc__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.leasing-calc__metrics > div {
    min-width: 0;
}

.leasing-calc__metric-label {
    margin: 0 0 -3px;
    font-size: 12px;
    line-height: 1.3;
}

.leasing-calc__metric-value {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.32;
    white-space: nowrap;
}

.leasing-calc__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 0;
}

.leasing-calc__card {
    min-height: 91px;
    padding: 18px;
    border: 1px solid rgba(155, 200, 250, .32);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .135));
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
}

.leasing-calc__card--accent {
    border-color: transparent;
    background: #ec6910;
}

.leasing-calc__card-label {
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
}

.leasing-calc__card-value {
    margin: 6px 0 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.32;
}

.leasing-calc__footnote {
    margin: 16px 0 0;
    font-size: 12px;
    line-height: 1.34;
    color: rgba(255, 255, 255, .9);
}

.leasing-compare {
    margin-top: 25px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 5px 8.6px rgba(0, 0, 0, .11);
}

.leasing-compare__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    border: none;
    background: #fff;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.leasing-compare__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #000;
}

.leasing-compare__arrow {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
    margin-left: 16px;
    margin-right: 10px;
    border: solid #636363;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: transform .3s ease, border-color .3s ease;
}

.leasing-compare__toggle[aria-expanded="true"] .leasing-compare__arrow {
    border-color: #ec6910;
    transform: rotate(-135deg);
}

.leasing-compare__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .55s ease;
}

.leasing-compare__body.is-open {
    grid-template-rows: 1fr;
}

.leasing-compare__body-inner {
    min-height: 0;
    overflow: hidden;
}

.leasing-compare__scroll {
    overflow-x: auto;
    padding: 0 20px 20px;
}

.leasing-compare__table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: rgba(217, 217, 217, .14);
    font-size: 12px;
}

.leasing-compare__table th,
.leasing-compare__table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.leasing-compare__table thead th {
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

.leasing-compare__table tbody td {
    font-weight: 500;
    color: #636363;
}

.leasing-compare__table th:first-child,
.leasing-compare__table td:first-child {
    width: 200px;
    text-align: left;
    font-weight: 700;
    color: #000;
}

.leasing-compare__table tbody tr:last-child th,
.leasing-compare__table tbody tr:last-child td {
    border-bottom: 0;
}

.leasing-compare__table th:nth-child(2),
.leasing-compare__table td:nth-child(2),
.leasing-compare__table th:nth-child(4),
.leasing-compare__table td:nth-child(4),
.leasing-compare__table th:nth-child(6),
.leasing-compare__table td:nth-child(6) {
    background: rgba(217, 217, 217, .14);
}

.leasing-page a:focus,
.leasing-page button:focus,
.leasing-page input:focus,
.leasing-page select:focus,
.leasing-page textarea:focus {
    outline: none;
}

.leasing-programs__calc :focus-visible {
    outline-color: #fff;
}

.leasing-steps :focus-visible,
.leasing-calc__panel :focus-visible {
    outline-color: #fff;
}

@media (max-width: 1200px) {

    .leasing-programs {
        grid-template-columns: repeat(2, 1fr);
    }

    .leasing-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .leasing-steps {
        grid-row: auto;
        grid-column: 1 / -1;
        order: 1;
    }

    .leasing-calc__metric-value {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .leasing-tab {
        min-height: 0;
        padding: 14px 18px 16px;
    }

    .leasing-tab__title {
        font-size: 20px;
    }

    .leasing-tab__text {
        font-size: 15px;
    }

    .leasing-tabs__panel {
        min-height: 0;
        padding: 20px;
    }

    .leasing-tabs__heading {
        font-size: 24px;
    }

    .leasing-tabs__lead {
        font-size: 18px;
    }

    .leasing-tabs__cols {
        gap: 20px;
    }

    .leasing-tabs__col-title {
        font-size: 20px;
    }

    .leasing-tabs__col-text {
        font-size: 16px;
    }

    .leasing-calc__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .main {
        padding-top: 60px !important;
    }

    .leasing-page {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .leasing-outlet {
        margin: 16px 0;
        padding: 6px 16px;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .leasing {
        padding: 20px 16px 30px;
    }

    .leasing-section {
        margin-top: 36px;
    }

    .leasing-head__title {
        font-size: 24px;
    }

    .leasing-head__subtitle {
        margin-top: 10px;
        font-size: 17px;
    }

    .leasing-tabs__strip {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .leasing-tab__pointer {
        display: none;
    }

    .leasing-tabs__cols {
        grid-template-columns: 1fr;
    }

    .leasing-benefits {
        gap: 16px;
    }

    .leasing-calc__title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .leasing-tab__text {
        white-space: normal;
    }

    .leasing-tabs__heading {
        font-size: 20px;
    }

    .leasing-tabs__lead {
        font-size: 16px;
        white-space: normal;
    }

    .leasing-tabs__col-text {
        white-space: normal;
    }

    .leasing-tabs__note {
        font-size: 14px;
        white-space: normal;
    }

    .leasing-programs {
        grid-template-columns: 1fr;
    }

    .leasing-benefits {
        grid-template-columns: 1fr;
    }

    .leasing-benefit__text {
        font-size: 17px;
    }

    .leasing-calc__panel {
        padding: 20px 16px;
    }

    .leasing-calc__form {
        padding: 20px 16px;
    }

    .leasing-calc__terms {
        gap: 8px;
    }

    .leasing-calc__term {
        font-size: 16px;
    }

    .leasing-calc__results {
        padding: 20px 16px;
    }

    .leasing-calc__metrics {
        grid-template-columns: 1fr;
        margin-bottom: 16px;
    }

    .leasing-calc__metric-value {
        font-size: 28px;
    }

    .leasing-calc__cards {
        grid-template-columns: 1fr;
    }
}

@media (hover: none) {
    .leasing-btn:hover {
        transform: none;
    }

    .leasing-btn--primary:hover {
        background: #ec6910;
        color: #fff;
    }

    .leasing-btn--primary:hover::before {
        opacity: 0;
        animation: none;
    }

    .leasing-btn--primary:hover::after {
        background: #ec6910;
    }

    .leasing-btn--outline:hover {
        background: #fff;
        color: #636363;
    }

    .leasing-btn--outline:hover .leasing-btn__icon {
        filter: none;
    }

    .leasing-calc__term:hover {
        border-color: #d9d9d9;
    }

    .leasing-calc__term.is-active:hover {
        border-color: #1d4e8c;
    }

    .leasing-outlet:hover {
        background-color: #ec6910;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .leasing-btn:hover {
        transform: none;
    }

    .leasing-btn--primary:hover::before {
        animation: none;
    }
}
