@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap");
html {
    scroll-behavior: smooth;
}

.lease-top-bar {
    background-color: #f4f1f1;
    display: none;
}
.lease-top-bar .nav-link {
    color: #121212;
    font-size: 0.75rem;
}
.lease-top-bar [class*="material-"] {
    font-size: 1.125rem;
    color: #3d63b7;
}
@media (max-width: 767.98px) {
    .lease-top-bar {
        display: block;
    }
}

.hero {
    position: relative;
    width: 100%;
    max-width: 1420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff;
    margin: 20px auto;
}

.hero__container {
    width: 100%;
    height: 100%;
    max-width: 1308px;
    min-height: 581px;
    margin: 0 auto;
    padding: 56px;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 2;
}

.hero__content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 406px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 24px 32px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 3;
}

.hero__title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
    color: #2b333e;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-weight: 400;
    line-height: 1.6;
    color: #1e1e1e;
    margin: 0 0 32px 0;
    max-width: 380px;
}

.hero__price-box {
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 8px;
}

.hero__price-label {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #8a8a9a;
    margin: 0 0 4px 0;
    text-transform: none;
}

.hero__price-value {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.hero__price-value span {
    font-size: 28px;
}

.hero__slider-wrap {
    position: relative;
    margin-bottom: 24px;
    padding: 12px 0 0;
}

.hero__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(
        to right,
        #3d63b7 var(--slider-percent, 24%),
        #b5c3e0 var(--slider-percent, 24%)
    );
    outline: none;
    cursor: pointer;
}

.hero__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero__slider::-webkit-slider-thumb::after {
    content: "‹›";
}

.hero__slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    cursor: grab;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero__slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.hero__slider-labels span {
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #8a8a9a;
}

.hero__cta {
    display: block;
    width: 100%;
    padding: 12.5px 52.5px;
    background: #3d63b7;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.15s ease;
    margin-bottom: 16px;
}

.hero__cta:hover {
    background: #2e4a8c;
    transform: translateY(-1px);
}

.hero__cta:active {
    transform: translateY(0);
}

.hero__link {
    display: block;
    text-align: center;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #3d63b7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero__link:hover {
    color: #2e4a8c;
    text-decoration: underline;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.hero__stars {
    display: flex;
    gap: 2px;
    color: #f5a623;
    font-size: 16px;
}

.hero__rating-text {
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #8a8a9a;
}

.hero__rating-google {
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #5a5a6e;
}

.hero__image-area {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 581px;
    overflow: visible;
}

.hero__bg-image {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 847px;
    height: 580px;
    max-width: none;
    z-index: 1;
    pointer-events: none;
    object-fit: cover;
}

.hero__car-image {
    position: relative;
    z-index: 2;
    width: 658px;
    height: 323px;
    max-width: none;
    object-fit: contain;
}

.how-it-works {
    width: 100%;
    background-color: #ffffff;
    padding: 80px 24px;
}

.how-it-works__container {
    max-width: 1190px;
    margin: 0 auto;
}

.how-it-works__title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 56px 0;
}

.how-it-works__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 80px;
    margin-bottom: 56px;
}

.how-it-works__card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.how-it-works__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #3d63b7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works__icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.how-it-works__card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 12px 0;
}

.how-it-works__card-text {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

.how-it-works__card-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.how-it-works__card-list li {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
}

.how-it-works__card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
}

.how-it-works__cta-wrap {
    text-align: center;
}

.how-it-works__cta {
    display: inline-block;
    padding: 12.5px 52.5px;
    background-color: #3d63b7;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.15s ease;
}

.how-it-works__cta:hover {
    background-color: #3d63b7;
    transform: translateY(-1px);
}

.how-it-works__cta:active {
    transform: translateY(0);
}

.lease__review {
    background: #ffffff;
    padding: 32px 0;
    margin: 20px 0;
}

.benefits {
    width: 100%;
    padding: 80px 24px;
}

.benefits__container {
    max-width: 1190px;
    margin: 0 auto;
}

.benefits__title {
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 24px 0;
    line-height: 1.25;
}

.benefits__title span {
    color: #3d63b7;
}

.benefits__desc {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.7;
    margin: 0 0 32px 0;
    max-width: 780px;
}

.benefits__desc strong {
    font-weight: 700;
}

.benefits__subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 32px 0;
}

.benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
}

.benefits__item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.benefits__check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.benefits__check svg {
    width: 16px;
    height: 16px;
    display: block;
}

.benefits__item-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
}

.benefits__item-text {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

.steps {
    width: 100%;
    background-color: #3d63b7;
    padding: 72px 24px;
}

.steps__container {
    max-width: 1190px;
    margin: 0 auto;
}

.steps__title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 48px 0;
}

.steps__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
}

.steps__card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps__card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.35;
}

.steps__card-text {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 28px 0;
    max-width: 360px;
}

.steps__card-link {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffffff;
    color: #0376b3;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.15s ease;
    margin-top: auto;
}

.steps__card-link:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

.steps__card-link:active {
    transform: translateY(0);
}

.faq {
    width: 100%;
    background-color: #f8f8f8;
    padding: 80px 24px;
}

.faq__container {
    max-width: 860px;
    margin: 0 auto;
}

.faq__title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 48px 0;
}

.faq__list {
    margin: 0 0 48px 0;
}

.faq__item {
    border-bottom: 1px solid #d0d0d0;
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 40px 24px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    text-align: left;
    cursor: pointer;
    position: relative;
    display: block;
    line-height: 1.4;
}

.faq__question::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 12px;
    height: 12px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    transform-origin: center;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.3s ease;
}

.faq__item.is-open .faq__question::after {
    transform: translateY(-35%) rotate(-135deg);
}

.faq__answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq__item.is-open .faq__answer-wrap {
    grid-template-rows: 1fr;
}

.faq__answer-inner {
    overflow: hidden;
}

.faq__answer {
    padding: 0 0 24px 0;
}

.faq__answer p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #595b61;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

.faq__cta-wrap {
    text-align: center;
}

.faq__cta {
    display: inline-block;
    padding: 18px 64px;
    background-color: #3d63b7;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.15s ease;
}

.faq__cta:hover {
    background-color: #2e4a8c;
    transform: translateY(-1px);
}

.faq__cta:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .hero {
        min-height: auto;
        max-width: 100%;
        justify-content: center;
        border-radius: 12px;
    }

    .hero__container {
        justify-content: center;
        padding: 40px 16px;
    }

    .hero__content {
        max-width: 440px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__price-value {
        font-size: 28px;
    }

    .hero__image-area {
        display: none;
    }

    .hero__rating {
        display: none;
    }
}

@media (max-width: 767px) {
    .how-it-works {
        padding: 32px 21px 40px 21px;
    }

    .how-it-works__title {
        font-size: 24px;
        margin-bottom: 32px;
        text-align: left;
    }

    .how-it-works__card-text {
        font-size: 14px;
    }

    .how-it-works__card-list li {
        font-size: 14px;
    }

    .how-it-works__icon {
        width: 32px;
        height: 32px;
    }

    .how-it-works__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .how-it-works__card {
        flex-direction: row;
        gap: 16px;
        padding: 24px 0;
        border-top: 1px solid #d9d9d9;
    }

    .how-it-works__card:first-child {
        border-top: none;
    }

    .how-it-works__card:last-child {
        padding-bottom: 0;
    }

    .how-it-works__grid{
        margin-bottom:40px;
    }
    .how-it-works__cta {
        width: 100%;
        padding: 18px 32px;
        margin-top: 0px;
    }

    .benefits {
        padding: 24px 21px 40px 21px;
    }

    .benefits__title {
        font-size: 24px;
    }

    .benefits__item-title {
        margin: 0 0 10px 0;
    }

    .benefits__desc {
        font-size: 14px;
    }

    .benefits__item-text {
        font-size: 14px;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .benefits__item {
        flex-direction: row;
        gap: 12px;
        padding: 24px 0;
    }

    .benefits__item:last-child {
        padding-bottom: 0;
    }
    .steps {
        padding: 48px 20px;
    }

    .steps__title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .steps__card-text {
        margin: 0 0 16px 0;
    }

    .steps__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .steps__card {
        padding: 32px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .steps__card:first-child {
        border-top: none;
        padding-top: 0;
    }

    .steps__card:last-child {
        padding-bottom: 0;
    }

    .faq {
        padding: 40px 20px 32px 20px;
    }

    .faq__title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 30px;
    }

    .faq__question {
        font-size: 16px;
        padding: 20px 36px 20px 0;
    }

    .faq__answer p {
        font-size: 15px;
    }

    .faq__cta {
        width: 100%;
        padding: 18px 32px;
    }

    .faq__list {
        margin: 0 0 50px 0;
    }

    .section-spacer {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .steps__title {
        font-size: 28px;
    }

    .steps__card-title {
        font-size: 18px;
    }

    .step_card-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero__content {
        padding: 24px 24px 32px 24px;
        border-radius: 12px;
    }

    .hero__title {
        font-size: 26px;
    }

    .hero__subtitle {
        font-size: 14px;
    }
}
