.home-page {
    font-family: 'Manrope', sans-serif;
    color: #0d1c39;
}

.home-page button,
.home-page input,
.home-page select,
.home-page textarea {
    font-family: inherit;
}

/* @media (max-width: 991px) {
    .home-page .home-wow {
        visibility: visible !important;
        animation: none !important;
        transform: none !important;
    }
} */

.home-hero {
    position: relative;
    min-height: calc(100vh - 32px);
    border-radius: 16px;
    overflow: hidden;
    margin: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (max-width: 1440px) {
    .home-hero {
        height: auto;
    }
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.home-hero__inner {
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 144px 16px 24px;
    max-width: 1408px;
    margin: 0 auto;
    width: 100%;
}

.home-hero__text {
    max-width: 803px;
    margin-bottom: 24px;
}

.home-hero__title {
    font-weight: 700;
    font-size: 56px;
    line-height: 130%;
    color: #ffffff;
    margin: 0 0 24px;
}

.home-hero__subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #ffffff;
    margin: 0;
}

.home-quote-form {
    max-width: 100%;
    width: 575px;
    min-height: 428px;
    box-sizing: border-box;
}

.home-quote-form h3 {
    margin: 0 0 28px;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 700;
    color: #001f48;
}

.home-quote-tabs {
    display: grid;
    grid-template-columns: 332px minmax(0, 1fr);
    gap: 0;
}

.home-quote-tab {
    border-radius: 16px 16px 0 0;
    background: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    min-height: 45px;
    padding: 8px 24px;
    font-family: Arimo;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    border: none;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-quote-tabs .home-quote-tab:nth-child(2) {
    text-align: center;
}

.home-quote-tab--with-note {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    min-height: 74px;
}

.home-quote-tab__note {
    font-family: Manrope;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #0B1FA1;
    margin: 0;
    text-align: left;
}

.home-quote-panel__mobile-note {
    display: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #0B1FA1;
    margin: 0 0 16px;
}

.home-quote-tab.is-active {
    background: #FFFFFF;
    color: #001F48;
    font-weight: 700;
}

.home-quote-panel {
    display: none;
}

.home-quote-panel.is-active {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px 32px;
    background-color: #FFFFFF;
    border-radius: 0 0 16px 16px;
    min-height: 431px;
}

.home-quote-field {
    margin-bottom: 18px;
}

.home-quote-field label {
    font-family: Manrope;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #1E17E0;
    margin: 0;
}

.home-quote-native,
.home-quote-input {
    height: 46px;
    width: 100%;
    border-radius: 32px;
    border: 1px solid #eceff6;
    background: #eceef3;
    color: #001f48;
    font-size: 16px;
    line-height: 1;
    outline: none;
    box-shadow: none;
}

.home-quote-native {
    padding: 0 42px 0 16px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23274369' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.home-quote-native:focus-visible,
.home-quote-input:focus-visible {
    border: 1px solid #C3C3C3;
    outline: none;
    box-shadow: none;
}

.home-quote-input {
    padding: 12px 24px;
}

.home-quote-input-with-unit {
    position: relative;
}

.weight-wrapper .home-quote-input {
    padding-right: 56px;
}

.home-quote-input-unit {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #001f48;
    pointer-events: none;
}

.home-quote-input::placeholder {
    color: #D8D8D8;
}

.home-quote-error {
    position: absolute;
    left: 0;
    bottom: -22px;
    color: #C31818;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    display: none;
    margin: 0;
}

.home-quote-field.is-invalid .home-quote-native,
.home-quote-field.is-invalid .home-quote-select__trigger,
.home-quote-field.is-invalid .home-quote-input {
    border-color: #C31818;
}

.home-quote-field.is-invalid .home-quote-error {
    display: block;
}

.home-track-message {
    margin: -4px 0 12px;
    color: #d61b27;
    font-size: 14px;
    line-height: 1.3;
    display: none;
}

.home-track-message.is-visible {
    display: block;
}

.home-quote-panel .form-inline {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 100%;
}

.home-track-form .home-quote-field {
    margin-top: auto;
    margin-bottom: auto;
}

.home-quote-btn {
    width: 100%;
    border: 1px solid #1E17E0;
    border-radius: 57px;
    padding: 12px 20px;
    min-height: 55px;
    background: linear-gradient(90.64deg, #0B1FA1 1.52%, #1E17E0 98.31%);
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: auto !important;
    gap: 8px;
}

.home-quote-btn svg path {
    stroke: #ffffff;
    transition: stroke 0.2s ease;
}

.home-quote-btn::after {
    display: none !important;
}

#get-quote.home-quote-btn {
    width: 100%;
    margin: 0;
}

@media (hover: hover) {
    .home-quote-btn:hover {
        text-decoration: none;
        background: transparent;
        color: #1E17E0;
    }

    .home-quote-btn:hover svg path {
        stroke: #1E17E0;
    }
}

.home-quote-form .form-inline .form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
    position: relative;
    width: 100%;
}

.home-quote-form__trust {
    margin-top: 12px;
}

.home-quote-results {
    margin: 0 24px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-14px);
    transition: max-height 0.55s ease, opacity 0.45s ease, transform 0.45s ease;
}

.homne-quote-main-title {
    font-family: Arimo;
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    text-align: center;
    color: #001F48;
    margin: 0 0 32px;
}

.home-quote-results.is-visible {
    max-height: 3000px;
    max-width: 100%;
    opacity: 1;
    position: relative;
    z-index: 2;
    transform: translateY(0);
    padding: 32px 0;
    border-radius: 16px;
    border: 1px solid #B0DAFF;
    background-color: #ffffff;
}

.home-quote-results.is-visible .new-container {
    max-width: 100%;
}

.home-quote-results__panel {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-quote-results__hero {
    min-height: 180px;
    border-radius: 24px;
    overflow: hidden;
    padding: 28px 32px;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(90deg, rgba(11, 31, 161, 0.82) 0%, rgba(30, 23, 224, 0.38) 58%, rgba(30, 23, 224, 0.08) 100%),
        url('/skin/ukexpes_skin/frontend/img/home-page/images/hero_banner.png?v=1') center 38% / cover no-repeat;
}

.home-result-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.home-result-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    max-width: 431px;
    width: 100%;
    border: 1px solid #d9eafc;
    background: #ffffff;
    border: 1px solid #D9EAFC;
    box-shadow: 0px 4px 24.3px 0px rgba(0, 0, 0, 0.15);
}

.home-result-card__banner {
    padding: 38px 20px;
    display: flex;
    align-items: center;
    background: url('/skin/ukexpes_skin/frontend/img/home-page/images/card-banner-1.png?v=1') center / cover no-repeat;
}

.home-result-card__banner--2 {
    background: url('/skin/ukexpes_skin/frontend/img/home-page/images/card-banner-2.png?v=1') center / cover no-repeat;
}

.home-result-card__banner--3 {
    background: url('/skin/ukexpes_skin/frontend/img/home-page/images/card-banner-3.png?v=1') center / cover no-repeat;
}

.home-result-card__banner--4 {
    background: url('/skin/ukexpes_skin/frontend/img/home-page/images/card-banner-4.png?v=1') center / cover no-repeat;
}

.home-result-card__banner--5 {
    background: url('/skin/ukexpes_skin/frontend/img/home-page/images/card-banner-5.png?v=1') center / cover no-repeat;
}

.home-result-card__banner-copy {
    color: #ffffff;
}

.home-result-card__eyebrow {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: #0B1FA1;
}

.home-result-card__banner-copy h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.home-result-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 24px 16px;
    gap: 16px;
}

.home-result-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.home-result-card__title {
    margin: 0 0 4px;
    color: #001f48;
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
}

.home-result-card__text {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #0B1FA1;
}

.home-result-card__tag {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 34px;
    border: 1px solid;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    white-space: nowrap;
}

.most-popular.home-result-card .home-result-card__tag {
    background-color: #FFE4DB;
    border-color: #F05D2F;
    color: #F05D2F;
}

.home-delivery.home-result-card .home-result-card__tag {
    background-color: #E9F1FF;
    border-color: #ACCBFF;
    color: #5B98FF;
}

.economy.home-result-card .home-result-card__tag,
.fast.home-result-card .home-result-card__tag {
    background-color: #CFFFCA;
    border-color: #BAFFBA;
    color: #0BCA4B;
}

.reliable.home-result-card .home-result-card__tag {
    background-color: #77FFC4;
    border-color: #10E2B1;
    color: #0B715D;
}

.home-result-card__list {
    background-color: #ECF5FF;
    margin: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 8px;
}

.home-result-card__list li {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #001F48;
    margin-left: 20px;
}

.home-result-card__options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-result-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.home-result-option:has(.home-result-option__input:disabled) {
    cursor: not-allowed;
    opacity: 0.55;
}

.home-result-option__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.home-result-option__text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 auto;
    color: #001f48;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    min-width: 0;
}

.home-result-option__text::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #1E17E0;
    background: #ffffff;
    box-sizing: border-box;
    flex: 0 0 16px;
}

.home-result-option__price {
    color: #0B1FA1;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap;
    margin-left: auto;
}

.home-result-option.is-selected .home-result-option__text::before,
.home-result-option__input:checked + .home-result-option__text::before {
    border-color: #1e17e0;
    background: radial-gradient(circle at center, #1e17e0 0 5px, #ffffff 5px 100%);
}

.home-result-card:has(.home-results-submit:disabled) {
    display: none;
}

.home-result-option.is-disabled .home-result-option__text::before {
    border-color: #c8cfdd;
    background: #f3f5fb;
}

.home-result-card .home-results-submit {
    margin-top: auto;
}

.home-quote-results__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-quote-results__benefit {
    position: relative;
    padding: 18px 20px 18px 48px;
    border-radius: 20px;
    background: #f6f8fd;
    color: #28456e;
    font-size: 16px;
    line-height: 1.35;
}

.home-quote-results__benefit::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 21px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(180deg, #0b1fa1 0%, #1e17e0 100%);
    box-shadow: 0 0 0 5px rgba(30, 23, 224, 0.08);
}

.home-quote-results__options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.home-quote-choice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid #d9eafc;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-quote-choice__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.home-quote-choice__label {
    flex: 1 1 auto;
    color: #001f48;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    min-width: 0;
}

.home-quote-choice__price {
    color: #1e17e0;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap;
    margin-left: auto;
}

.home-quote-choice.is-selected {
    border-color: #1e17e0;
    box-shadow: 0 8px 24px rgba(20, 78, 155, 0.12);
    background: #f8f7ff;
}

.home-quote-choice.is-disabled {
    cursor: not-allowed;
    background: #f5f6fa;
    border-color: #e5e8f0;
}

.home-quote-choice.is-disabled .home-quote-choice__label,
.home-quote-choice.is-disabled .home-quote-choice__price {
    color: #9aa4b8;
}

.home-quote-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-quote-tooltip__icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    color: #fff;
    font-family: Arimo;
    font-weight: 700;
    font-size: 8px;
    background: #1E17E0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-quote-tooltip__bubble {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    width: 220px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #ffffff;
    color: #001f48;
    font-size: 13px;
    line-height: 1.35;
    box-shadow: 0 12px 28px rgba(20, 78, 155, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.home-quote-tooltip__bubble::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff;
}

.home-quote-tooltip:hover .home-quote-tooltip__bubble,
.home-quote-tooltip:focus-within .home-quote-tooltip__bubble {
    opacity: 1;
}

.home-results-submit {
    width: 100%;
    border: 1px solid #1E17E0;
    border-radius: 57px;
    padding: 12px 20px;
    min-height: 55px;
    background: linear-gradient(90.64deg, #0B1FA1 1.52%, #1E17E0 98.31%);
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.home-results-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.home-results-submit svg path {
    stroke: #ffffff;
    transition: stroke 0.2s ease;
}

@media (hover: hover) {
    .home-results-submit:hover:not(:disabled) {
        background: transparent;
        color: #1E17E0;
    }

    .home-results-submit:hover:not(:disabled) svg path {
        stroke: #1E17E0;
    }
}

/* OTHER STYLES */
.new-container {
    max-width: 1408px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}


.home-section-head {
    margin-bottom: 24px;
}

.home-section-head h2 {
    margin: 0;
    font-weight: 700;
    font-size: 48px;
    line-height: 140%;
    color: #001F48;
    margin: 0 auto 8px;
    text-align: center;
}

.home-section-head p {
    font-weight: 400;
    font-size: 24px;
    line-height: 42px;
    text-align: center;
    color: #0B1FA1;
}

.home-why-choose .home-section-head p,
.home-testimonials .home-section-head p {
    color: #1E17E0;
}

/* HOW-IT-WORKS Section styles */
.home-how-it-works {
    position: relative;
    z-index: 2;
}

.home-how-panel {
    min-height: 560px;
    border-radius: 16px;
    overflow: hidden;
    background: url('/skin/ukexpes_skin/frontend/img/home-page/images/hiw-bg.png?v=1') center/cover no-repeat;
}

.home-how-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 627px);
    gap: 48px;
    min-height: 560px;
    padding: 32px 24px;
}

.home-how-intro {
    min-width: 0;
}

.home-how-intro-inner {
    height: 100%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.home-how-intro h2 {
    margin: 0;
    font-weight: 700;
    font-size: 48px;
    line-height: 140%;
    color: #ffffff;
}

.home-how-intro-bottom {
    margin-top: auto;
    max-width: 397px;
}

.home-how-intro-bottom p {
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    color: #ffffff;
    margin: 0 0 12px;
}

.home-how-intro-bottom p:nth-child(2) {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 24px;
}

.home-primary-btn {
   display: flex;
   flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 502px;
    width: 100%;
    padding: 12px 0;
    border: 1px solid #FFFFFF;
    border-radius: 57px;
    background: #ffffff;
    color: #1E17E0;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.home-primary-btn:hover svg path {
    transition: stroke 0.2s ease;
}

@media (hover: hover) {
    .home-primary-btn:hover {
        text-decoration: none;
        background: transparent;
        color: #ffffff;
    }

    .home-primary-btn:hover svg path {
        stroke: #ffffff;
    }
}

.home-how-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
}

.home-how-step {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    position: relative;
}

@media (max-width: 1440px) {
    .home-how-panel {
        min-height: 520px;
    }

    .home-how-layout {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 560px);
        gap: 32px;
        min-height: 520px;
        padding: 28px 20px;
    }

    .home-how-intro h2 {
        font-size: 42px;
    }

    .home-how-intro-bottom {
        max-width: 460px;
    }

    .home-how-intro-bottom p {
        font-size: 28px;
        line-height: 125%;
    }

    .home-how-intro-bottom p:nth-child(2) {
        font-size: 18px;
    }

    .home-primary-btn {
        max-width: 440px;
        font-size: 16px;
    }

    .home-how-steps {
        gap: 20px;
    }

    .how-step-card {
        max-width: 100%;
        padding: 20px 20px 32px;
        gap: 14px;
    }

    .how-step-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .how-step-content p {
        font-size: 18px;
        line-height: 135%;
    }
}

@media (max-width: 1280px) {
    .home-how-panel {
        min-height: 500px;
    }

    .home-how-layout {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
        gap: 24px;
        min-height: 500px;
        padding: 24px 16px;
    }

    .home-how-intro h2 {
        font-size: 38px;
        line-height: 130%;
    }

    .home-how-intro-bottom {
        max-width: 420px;
    }

    .home-how-intro-bottom p {
        font-size: 24px;
        line-height: 125%;
        margin-bottom: 14px;
    }

    .home-how-intro-bottom p:nth-child(2) {
        font-size: 17px;
        line-height: 135%;
    }

    .home-primary-btn {
        max-width: 400px;
        min-height: 48px;
        font-size: 15px;
    }

    .home-how-steps {
        gap: 16px;
    }

    .home-how-step {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 12px;
    }

    .how-step-rail__number {
        width: 44px;
        height: 44px;
        font-size: 21px;
    }

    .how-step-rail__line {
        top: 44px;
    }

    .how-step-card {
        padding: 18px 18px 28px;
        gap: 12px;
    }

    .how-step-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .how-step-content p {
        font-size: 16px;
        line-height: 135%;
    }
}

.how-step-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-step-rail__number {
    text-align: center;
    background-color: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #1E17E0;
}

.how-step-rail__line {
    flex: 1;
    width: 1px;
    top: 50px;
    position: absolute;
    height: 74%;
    margin: 8px auto 0;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0 2px, transparent 2px 12px);
    background-repeat: repeat-y;
    background-size: 1px 6px;
}

.how-step-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 24px 42px;
    backdrop-filter: blur(28.4px);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    max-width: 569px;
    width: 100%;
}

.how-step-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.how-step-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

.how-step-content h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    margin: 0 0 16px;
    color: #ffffff;
}

.how-step-content p {
    margin: 0;
    font-weight: 400;
    font-size: 20px;
    color: #ffffff;
}

/* WHY-CHOOSE Section styles */
.home-why-choose {
    position: relative;
    z-index: 1;
    padding: 300px 0 150px;
    margin: -150px 0 0;
    background-image: url('/skin/ukexpes_skin/frontend/img/home-page/images/WC_BG.png?v=1');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.home-why-choose .home-section-head {
    margin-bottom: 48px;
}

.home-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    align-items: start;
    padding-bottom: 34px;
}

.why-card {
    background: #FFFFFF;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 490px;
}

.home-why-grid .why-card:nth-child(2),
.home-why-grid .why-card:nth-child(3) {
    margin-top: 34px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(217, 234, 252, 1);
    backdrop-filter: blur(24px);
}

.why-card h3 {
    font-family: Arimo;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    color: #ffffff;
    padding: 4px 12px;
    background-color: #317BFF;
    border-radius:  0 0 12px 12px;
    margin: 0 24px 16px;
    width: fit-content;
}

.why-card p {
    margin: 0 24px 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #001F48;
    display: flex;
    flex-direction: column;
}

.why-card p br {
    display: none;
}

.why-card p strong {
    font-family: Arimo;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #1E17E0;
    margin-bottom: 8px;
}

.why-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: auto;
    border-radius: 0 0 8px 8px;
}

.why-card .why-card__img--desktop {
    display: block;
}

.why-card .why-card__img--mobile {
    display: none;
}

.why-card .why-card__note {
    background: #DCE7FD;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    color: #1E17E0;
    margin: 0;
    border-radius: 0 0 8px 8px;
}

.why-card--with-note .why-card__img {
    border-radius: 0;
}

/* ===== TESTIMONIALS Section ===== */
.home-testimonials {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-image: url('/skin/ukexpes_skin/frontend/img/home-page/images/testimonials_bg.png?v=1');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 150px 0 133px;
    margin: -150px 0 -133px;
}

.home-testimonials .home-section-head {
    margin-bottom: 48px;
}

.home-testimonials .home-section-head p strong {
    color: #1E17E0;
    font-weight: 700;
}

.home-testimonials-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    overflow: hidden;
}

.testimonials-stat-block {
    padding: 24px 20px 54px 57px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonials-stat-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.testimonials-stat-title {
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    color: #1E17E0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.testimonials-stat-label {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #1E17E0;
}

.testimonials-stat-bottom {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonials-stars {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.testimonials-stat-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
    color: #001F48;
}

.home-testimonials-slider-wrap {
    width: 100vw;
    top: -12px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.home-reviews-slider {
    width: 100%;
}

.review-slide {
    width: 556px;
    max-width: 556px;
    margin: 0 8px;
    outline: none;
    background: #ffffff;
    border: 1px solid #D9EAFC;
    border-radius: 16px;
    padding: 40px;
    min-height: 220px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    box-sizing: border-box;
}

.home-reviews-slider .slick-center .review-slide {
    box-shadow: 0 20px 56px rgba(20, 78, 155, 0.14);
    transform: scale(1.03);
    border-color: rgba(30, 23, 224, 0.18);
}

.home-reviews-slider .slick-slide:not(.slick-center) .review-slide {
    opacity: 0.6;
}

.review-slide__text {
    font-family: Arimo;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #001F48;
    margin: 0 0 24px;
    flex-grow: 1;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-slide__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.review-slide__author {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.review-slide__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #D9EAFC;
    flex-shrink: 0;
    display: inline-block;
}

.review-slide__name,
.review-slide__city {
    font-family: Arimo;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #D9EAFC;
}

.review-slide__stars {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.home-reviews-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.home-reviews-prev,
.home-reviews-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1E17E0;
    color: #FFFFFF;
    display: flex;
    border: 1px solid #1E17E0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.home-reviews-prev:hover,
.home-reviews-next:hover {
    background: transparent;
    color: #1E17E0;
}

@media (max-width: 1440px) {
    .home-testimonials {
        padding: 130px 0 112px;
        margin: -130px 0 -112px;
    }

    .home-testimonials .home-section-head {
        margin-bottom: 40px;
    }

    .testimonials-stat-block {
        padding: 20px 16px 36px 28px;
        gap: 12px;
    }

    .testimonials-stat-title {
        font-size: 48px;
    }

    .testimonials-stat-label {
        font-size: 20px;
    }

    .home-testimonials-slider-wrap {
        top: 0;
    }

    .review-slide {
        width: 500px;
        max-width: 500px;
        padding: 32px;
    }
}

@media (max-width: 1280px) {
    .home-testimonials {
        padding: 110px 0 96px;
        margin: -110px 0 -96px;
    }

    .home-testimonials .home-section-head {
        margin-bottom: 32px;
    }

    .testimonials-stat-block {
        padding: 18px 14px 28px 18px;
        gap: 10px;
    }

    .testimonials-stat-top,
    .testimonials-stat-bottom {
        gap: 10px;
    }

    .testimonials-stat-title {
        font-size: 40px;
    }

    .testimonials-stat-label {
        font-size: 18px;
    }

    .testimonials-stat-text {
        font-size: 14px;
    }

    .review-slide {
        width: 440px;
        max-width: 440px;
        min-height: 200px;
        padding: 28px;
    }

    .review-slide__text {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .home-testimonials {
        padding: 90px 0 72px;
        margin: -90px 0 -72px;
    }

    .home-testimonials .home-section-head {
        margin-bottom: 24px;
    }

    .home-testimonials-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        padding-bottom: 16px;
    }

    .testimonials-stat-block {
        padding: 16px 12px 18px;
        min-height: 102px;
    }

    .testimonials-stat-bottom {
        flex-direction: column;
    }

    .testimonials-stat-title {
        font-size: 26px;
    }

    .testimonials-stat-title img {
        width: 22px;
        height: 22px;
    }

    .testimonials-stat-label {
        font-size: 18px;
        line-height: 120%;
    }

    .testimonials-stars {
        gap: 4px;
    }

    .testimonials-stars svg {
        width: 12px;
        height: 12px;
    }

    .testimonials-stat-text {
        font-size: 16px;
    }

    .home-testimonials-slider-wrap {
        width: 100%;
        left: 0;
        transform: none;
        top: -16px;
        padding: 0 16px;
    }

    .review-slide {
        width: 100%;
        max-width: none;
        margin: 0;
        min-height: 0;
        padding: 24px;
    }

    .home-reviews-slider .slick-slide:not(.slick-center) .review-slide {
        opacity: 1;
    }

    .home-reviews-slider .slick-center .review-slide {
        transform: none;
        box-shadow: 0 12px 24px rgba(20, 78, 155, 0.12);
    }

    .home-reviews-nav {
        margin-top: 32px;
    }
}

@media (max-width: 991px) {
    .home-hero {
        min-height: calc(100vh - 24px);
        margin: 12px;
    }

    .home-hero__bg-img {
        object-position: right center;
    }

    .home-hero__inner {
        min-height: calc(100vh - 24px);
        justify-content: flex-end;
        padding: 120px 12px 12px;
        gap: 16px;
    }

    .home-hero__text {
        margin-bottom: 0;
    }

    .home-hero__form-wrap {
        width: 100%;
        margin-top: auto;
    }

    .home-quote-form {
        width: 100%;
        max-width: 100%;
    }

    .home-hero__title {
        font-size: 32px;
        line-height: 120%;
    }

    .home-result-cards {
        flex-direction: column;
        gap: 16px;
        justify-content: center;
        align-items: center;
    }

    .home-hero__subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .home-section-head h2 {
        font-size: 36px;
    }

    .home-section-head p {
        font-size: 18px;
        line-height: 28px;
    }


    .home-how-intro h2 {
        font-size: 32px;
        line-height: 120%;
        margin-bottom: 16px;
    }

    .home-how-intro-bottom p {
        font-size: 24px;
        max-width: 420px;
    }

    .home-how-intro-bottom {
        max-width: unset;
    }

    .home-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-how-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 16px;
    }

    .how-step-card {
        max-width: unset;
    }

    .home-how-panel {
        background-position: left center;
    }

    .home-why-grid .why-card:nth-child(2), .home-why-grid .why-card:nth-child(3) {
        margin-top: 0;
    }

    .why-card h3 {
        font-size: 20px;
    }

    .why-card p {
        font-size: 16px;
        line-height: 120%;
    }
}

@media (max-width: 768px) {
    .home-quote-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero {
        min-height: calc(100vh - 16px);
        margin: 8px;
        border-radius: 12px;
    }

    .home-hero__bg-img {
        object-position: 74% center;
    }

    .home-hero__inner {
        min-height: calc(100vh - 16px);
        padding: 88px 8px 8px;
        gap: 12px;
    }

    .home-quote-tab {
        font-size: 14px;
        line-height: 20px;
    }

    .home-how-intro-bottom p:nth-child(2) {
        font-size: 16px;
        font-weight: 400;
         line-height: 120%;
    }

    .home-quote-tab__note {
        display: none;
    }

    .home-quote-tab--with-note {
        min-height: 45px;
        gap: 2px;
        align-items: center;
    }

    .home-quote-panel__mobile-note {
        display: block;
    }

    .home-hero__title {
        font-size: 40px;
    }

    .home-hero__subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .how-step-card {
        padding: 16px;
    }

    .how-step-icon {
        max-width: 32px;
    }

    .testimonials-stat-block {
        align-items: center;
    }

    .how-step-content h3 {
        font-size: 20px;
    }

    .how-step-rail__number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .home-result-card__body {
        padding: 16px 8px;
    }

    .home-result-card__title {
        font-size: 16px;
    }

    .home-result-card__text {
        font-size: 14px;
        line-height: 20px;
    }

    .home-result-card__tag {
        font-size: 12px;
        line-height: 16px;
    }

    .home-result-option__text {
        font-size: 16px;
    }

    .home-result-option__price {
        font-size: 16px;
    }

    .home-quote-results.is-visible {
        padding: 16px 8px;
    }

    .home-quote-results.is-visible .new-container {
        padding: 0;
    }

    .homne-quote-main-title {
        margin-top: 16px;
        font-size: 32px;
    }

    .home-result-card__body {
        gap: 12px;
    }

    .home-primary-btn {
        max-width: 100%;
    }

    .how-step-rail__line {
        top: 32px;
    }

    .home-how-steps .home-how-step:last-child .how-step-rail__line {
        display: none;
    }

    .how-step-content p {
        font-size: 16px;
    }

    .home-quote-form {
        min-height: 0;
    }

    .home-quote-panel.is-active {
        min-height: 320px;
        padding: 20px 16px;
    }

    .home-section-head h2 {
        font-size: 32px;
    }

    .home-section-head {
        margin-bottom: 32px;
    }

    .why-card h3 {
        margin: 0 16px 8px;
        font-size: 14px;
    }

    .why-card p {
        margin: 0 16px 0;
        gap: 8px;
    }

    .why-card p strong {
        font-size: 20px;
        margin-bottom: 0;
    }

    .why-card p br {
        display: none;
    }

    .why-card {
        min-height: 225px;
    }

    .why-card__note {
        padding: 8px 16px;
    }

    .why-card .why-card__img--desktop {
        display: none;
    }

    .why-card .why-card__img--mobile {
        display: block;
    }

    .home-why-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 560px) {
    .home-hero {
        min-height: 520px;
        overflow: visible;
        margin-bottom: 580px;
    }

    .home-hero__bg-img {
        object-position: 78% center;
        border-radius:  16px 16px 0 0;
    }

    .home-hero__inner {
        min-height: 632px;
        padding: 88px 8px 24px;
    }

    .home-hero__inner {
        justify-content: center;
    }

    .home-hero__text {
        max-width: 100%;
    }

    .home-hero__form-wrap {
        position: absolute;
        top: 90%;
        left: 0;
        right: 0;
    }

    .home-quote-form {
        width: 100%;
        max-width: 100%;
    }

}