.select-box {
    z-index: 999;
    width: 90%;
    margin: auto;
    position: relative;
    display: block;
    font-size: 18px;
    color: #60666d;
}
.select-box__current {
    position: relative;
    box-shadow: none;
    cursor: pointer;
    outline: none;
}
.select-box__current:focus + .select-box__list {
    opacity: 1;
    -webkit-animation-name: none;
    animation-name: none;
}
.select-box__current:focus + .select-box__list .select-box__option {
    cursor: pointer;
}
.select-box__current:focus .select-box__icon {
    transform: translateY(-50%) rotate(180deg);
}
.select-box__icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    opacity: 0.3;
    transition: 0.2s ease;
}
.select-box__input {
    display: none;
}
.select-box__input:checked + .select-box__input-text {
    display: block;
}
.select-box__input-text {
    text-align: left !important;
    padding-left: 37px;
    font-size: 14px;
    color: #9da3b0;
    outline: none;
    display: none;
    height: 44px;
    background: #fff;
    border: 1.2px solid #ddd;
    border-radius: 10px;
    padding: 10px 12px 10px 38px;
    box-sizing: border-box;
}
.select-box__list {
    position: absolute;
    width: 100%;
    padding: 0;
    list-style: none;
    opacity: 0;
    -webkit-animation-name: HideList;
    animation-name: HideList;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: step-start;
    animation-timing-function: step-start;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}
.select-box__option {
    display: block;
    padding: 10px 12px;
    text-align: left;
    background: #fff;
}
.select-box__option:hover,
.select-box__option:focus {
    color: #546c84;
    background: #fbfbfb;
}
@-webkit-keyframes HideList {
    from {
        transform: scaleY(1);
    }
    to {
        transform: scaleY(0);
    }
}
@keyframes HideList {
    from {
        transform: scaleY(1);
    }
    to {
        transform: scaleY(0);
    }
}

.slick-slide {
    margin: 0 20px;
}
.slick-track {
    padding: 1rem 0;
    display: flex;
    align-content: center;
    align-items: center;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    background: url(https://raw.githubusercontent.com/solodev/infinite-logo-carousel/master/images/arrow.svg?sanitize=true)
        center no-repeat;
    color: #fff;
    filter: invert(77%) sepia(32%) saturate(1%) hue-rotate(344deg)
        brightness(105%) contrast(103%);
    border: none;
    width: 2rem;
    height: 1.5rem;
    text-indent: -10000px;
    margin-top: -16px;
    z-index: 99;
}
.slick-arrow.slick-next {
    right: -40px;
    transform: rotate(180deg);
}
.slick-arrow.slick-prev {
    left: -40px;
}
.customer-logos {
    display: flex;
    align-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .slick-arrow {
        width: 1rem;
        height: 1rem;
    }
}
.logo-carousel {
    margin-top: 32px;
    margin-bottom: 75px;
}

.shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ececec;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
}
#customers-testimonials .shadow-effect p {
    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
}
.testimonial-name {
    margin: -17px auto 0;
    display: table;
    width: auto;
    background: #d3a310;
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 100000;
}
.cookie-consent p {
    margin: 15px;
}
.hidden {
    display: none;
}
#slideshow {
    height: fit-content;
}

.lesus-landing .hero-wrapper {
    position: relative;
    width: 100%;
    min-height: clamp(560px, 86vh, 780px);
    overflow: hidden;
    background: #000;
}
.lesus-landing .hero-slider-track {
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateX(var(--hero-x, 0%));
    transition: transform 900ms ease-in-out;
    will-change: transform;
}
.lesus-landing .hero-slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.95);
}
.lesus-landing .hero-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.lesus-landing .hero-overlay {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    align-items: center;
    padding: clamp(22px, 4.5vw, 56px) 0;
}
.lesus-landing .hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    box-sizing: border-box;
}
.lesus-landing .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 433px);
    gap: clamp(16px, 3vw, 32px);
    align-items: center;
}
.lesus-landing .hero-left {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.lesus-landing .hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.lesus-landing .hero-glass {
    width: 100%;
    max-width: 680px;
    padding: clamp(18px, 3.5vw, 28px) clamp(18px, 3.8vw, 36px);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.lesus-landing .hero-title {
    font-family: Zodiak;
    font-size: clamp(22px, 5.4vw, 40px);
    font-weight: 540;
    line-height: 1.08;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
}
.lesus-landing .hero-nowrap {
    font-family: Zodiak;
    white-space: nowrap;
    display: inline-block;
    font-size: inherit;
    letter-spacing: inherit;
    transform: none;
    margin-left: 0;
}
.lesus-landing .hero-highlight {
    font-family: Zodiak;
    color: #000;
    font-size: inherit;
}
.lesus-landing .hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    margin-left: auto;
    margin-right: auto;
    width: min(460px, 50%);
    min-width: 260px;
    height: 52px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    background: linear-gradient(90deg, #000 0%, #d3a74a 100%);
    border: none;
}

.lesus-landing .booking-card {
    width: 100%;
    max-width: 433px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    padding: 22px;
    box-sizing: border-box;
}
.lesus-landing .booking-title {
    font-family: Zodiak;
    margin: 0 0 12px 0;
    color: #000;
    font-size: 20px;
    font-weight: 540;
    line-height: 1.5;
}
.lesus-landing .booking-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}
.lesus-landing .booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}
.lesus-landing .booking-field-label {
    font-size: 13px;
    color: #222;
    font-weight: 600;
}
.lesus-landing .booking-input-wrap {
    position: relative;
    width: 100%;
}
.lesus-landing .booking-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #111;
    opacity: 0.55;
    font-size: 16px;
}
.lesus-landing .booking-input {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1.2px solid #ddd;
    padding: 10px 12px 10px 38px;
    outline: none;
    box-sizing: border-box;
    background: #fff;
}
.lesus-landing .booking-input:focus {
    border-color: #d3a74a;
    box-shadow: 0 0 0 3px rgba(211, 167, 74, 0.18);
}
.lesus-landing .booking-textarea {
    border-radius: 10px;
    border: 1.2px solid #ddd;
    padding: 10px 12px;
    min-height: 92px;
    outline: none;
    resize: vertical;
    box-sizing: border-box;
    width: 100%;
}
.lesus-landing .booking-textarea:focus {
    border-color: #d3a74a;
    box-shadow: 0 0 0 3px rgba(211, 167, 74, 0.18);
}
.lesus-landing .booking-cta {
    margin-top: 14px;
    width: 100%;
    height: clamp(46px, 5vw, 56px);
    border-radius: clamp(12px, 2vw, 16px);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: clamp(16px, 1.6vw, 20px);
    background: linear-gradient(90deg, #000 0%, #d3a74a 100%);
}

.lesus-landing .booking-segment {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 12px 0 6px 0;
    border: none;
    background: transparent;
    border-radius: 0;
    box-sizing: border-box;
}
.lesus-landing .booking-segment .input-container {
    position: relative;
    flex: 0 0 calc((100% - 24px) / 3);
    width: calc((100% - 24px) / 3);
    min-width: 0;
    height: 40px;
    margin: 0;
}
.lesus-landing .booking-segment .radio-button {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
    margin: 0;
}
.lesus-landing .booking-segment .radio-tile {
    height: 40px;
    border-radius: 16px;
    border: 2px solid #d3a74a;
    background: #fff;
    box-sizing: border-box;
    display: block;
    transition: background 0.15s ease, border-color 0.15s ease,
        box-shadow 0.15s ease, transform 0.08s ease;
}
.lesus-landing .booking-segment .radio-tile .icon {
    display: none;
}
.lesus-landing .booking-segment .radio-tile-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d3a74a;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
    margin: 0;
}
.lesus-landing .booking-segment .radio-button:checked + .radio-tile {
    background: #000;
    border-color: #000;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}
.lesus-landing
    .booking-segment
    .radio-button:checked
    + .radio-tile
    + .radio-tile-label {
    color: #fff;
}
.lesus-landing .booking-segment .input-container:hover .radio-tile {
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}
.lesus-landing .booking-segment .radio-button:active + .radio-tile {
    transform: scale(0.98);
}
.lesus-landing .booking-segment .is-disabled .radio-tile {
    background: rgba(133, 133, 133, 0.22);
    border-color: rgba(133, 133, 133, 0.45);
}
.lesus-landing .booking-segment .is-disabled .radio-tile-label {
    color: rgba(0, 0, 0, 0.45);
}

@media (min-width: 1200px) {
    .lesus-landing .hero-glass {
        max-width: 620px;
    }
}
@media (max-width: 992px) {
    .lesus-landing .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }
    .lesus-landing .hero-left,
    .lesus-landing .hero-right {
        justify-content: center !important;
    }
    .lesus-landing .hero-right {
        margin-top: 0 !important;
        z-index: auto !important;
    }
    .lesus-landing .hero-glass {
        max-width: 720px;
        text-align: center;
        margin-bottom: 0 !important;
    }
    .lesus-landing .hero-cta {
        width: min(460px, 100%);
        min-width: 0;
    }
    .lesus-landing .booking-card {
        max-width: 560px !important;
        margin-top: 14px !important;
    }
}
@media (max-width: 768px) {
    .lesus-landing .hero-wrapper {
        min-height: unset;
    }
    .lesus-landing .hero-overlay {
        padding: 28px 0 34px 0;
        align-items: flex-start;
    }
    .lesus-landing .hero-glass {
        max-width: 560px;
        padding: 22px 20px;
    }
    .lesus-landing .booking-row {
        grid-template-columns: 1fr;
    }
    .lesus-landing .booking-card {
        width: 100%;
        max-width: 560px;
        margin-top: 18px !important;
    }
    .lesus-landing .hero-cta {
        width: min(460px, 100%);
        max-width: 460px;
    }
}
@media (max-width: 420px) {
    .lesus-landing .hero-glass {
        padding: 20px 16px;
        border-radius: 18px;
    }
}
@media (max-width: 360px) {
    .lesus-landing .booking-segment {
        gap: 8px;
    }
    .lesus-landing .booking-segment .input-container {
        flex-basis: calc((100% - 16px) / 3);
        width: calc((100% - 16px) / 3);
    }
    .lesus-landing .booking-segment .radio-tile {
        height: 38px;
    }
    .lesus-landing .booking-segment .radio-tile-label {
        font-size: 13px;
    }
}

.top-strip {
    padding: clamp(28px, 4vw, 60px) 0;
    background: transparent;
}
.top-strip-card {
    max-width: 1280px;
    margin: 0 auto;
    background: #000;
    border-radius: 36px;
    padding: clamp(26px, 3.5vw, 54px) clamp(18px, 5vw, 80px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.top-strip-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(22px, 3vw, 54px);
    align-items: start;
}
.top-strip-title {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.2px;
    text-align: center;
}
.gold {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.2px;
    text-align: center;
}
.top-strip-title .gold {
    color: #d4af37;
}
.top-strip-left,
.top-strip-center,
.top-strip-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.top-strip-visual {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    width: 60%;
}
.top-strip-phone {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
}
.top-strip-stores {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
}
.store-badge {
    height: 42px;
    width: auto;
    display: block;
}
.qr-holder {
    display: none;
}
.top-strip-award {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}
.award-img {
    width: min(320px, 100%);
    height: auto;
    display: block;
}
.member-grid {
    margin-top: 18px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    justify-items: center;
}
.member-tile {
    width: 100%;
    max-width: 220px;
    height: 86px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    box-sizing: border-box;
}
.member-tile img {
    max-height: 64px;
    max-width: 95%;
    width: auto;
    height: auto;
    display: block;
}
.member-tile--wide {
    grid-column: 1 / -1;
    max-width: 240px;
}
@media (max-width: 992px) {
    .top-strip-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .top-strip-title {
        font-size: 18px;
    }
    .award-img {
        width: min(300px, 100%);
    }
    .member-tile {
        max-width: 260px;
    }
}

.lesus-services {
    padding: clamp(44px, 5vw, 90px) 0;
    background: #fff;
}
.lesus-services__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    box-sizing: border-box;
}
.lesus-services__heading {
    font-family: Zodiak;
    margin: 0 0 clamp(26px, 3.5vw, 46px) 0;
    text-align: center;
    color: #111;
    font-size: clamp(16px, 4vw, 40px);
    font-weight: 540;
    letter-spacing: 0.2px;
}
.lesus-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 46px);
    align-items: stretch;
}
.lesus-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.lesus-service__image {
    width: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: #f3f3f3;
    aspect-ratio: 16 / 10;
}
.lesus-service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lesus-service__title {
    font-family: Zodiak;
    margin: 18px 0 10px 0;
    text-align: center;
    color: #111;
    font-size: clamp(20px, 1.7vw, 26px);
    font-weight: 600;
}
.lesus-service__text {
    margin: 0;
    text-align: center;
    color: #333;
    font-size: 15px;
    line-height: 1.75;
    max-width: 420px;
    flex: 1;
}
.lesus-service__cta {
    margin-top: 22px;
    width: min(360px, 100%);
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 16px);
    letter-spacing: 0.2px;
    transition: transform 0.12s ease, opacity 0.12s ease;
}
.lesus-service__cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.lesus-services .lesus-service__text strong {
    font-weight: inherit;
    color: inherit;
}
@media (max-width: 992px) {
    .lesus-services__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .lesus-service__text {
        max-width: 520px;
    }
}

.class-pref {
    padding: clamp(44px, 5vw, 90px) 0;
    background: #fff;
}
.class-pref__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    box-sizing: border-box;
}
.class-pref__title {
    font-family: Zodiak;
    margin: 0;
    text-align: center;
    font-size: clamp(22px, 3.8vw, 42px);
    font-weight: 540;
    color: #111;
    letter-spacing: 0.2px;
}
.class-pref__title span {
    font-size: inherit;
    font-family: inherit;
    color: #d3a74a;
    font-weight: 540;
}
.class-pref__subtitle {
    margin: 14px auto 0 auto;
    max-width: 780px;
    text-align: center;
    color: #111;
    font-size: 16px;
    line-height: 1.75;
}
.class-pref__subtitle b {
    font-weight: 750;
}
.class-pref__tabs {
    margin: 54px auto 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    background: #f2f2f2;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}
.class-pref__tab {
    flex: 1 1 0;
    appearance: none;
    border: 0;
    background: transparent;
    padding: 16px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 28px;
    font-weight: 600;
    color: #6b6f76;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: center;
}
.class-pref__tab.is-active {
    background: #d3a74a;
    color: #111;
}
.class-pref__tabline {
    display: none;
}
.class-pref__tab:focus-visible {
    outline: 2px solid rgba(211, 167, 74, 0.8);
    outline-offset: 2px;
}
@media (max-width: 992px) {
    .class-pref__tabs {
        max-width: 100%;
    }
    .class-pref__tab {
        font-size: 18px;
        padding: 14px 8px;
    }
}

.class-pref__panel {
    margin-top: 64px;
}
.class-pref__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 4vw, 70px);
    align-items: end;
}
.class-pref__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.class-pref__car {
    width: min(320px, 80%);
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.18));
}
.class-pref__name {
    margin-top: 1px;
    font-size: 18px;
    color: #111;
}
.class-pref__name b {
    font-weight: 800;
}
@media (max-width: 992px) {
    .class-pref__tabs {
        max-width: 100%;
        gap: 40px;
    }
    .class-pref__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .class-pref__panel {
        margin-top: 44px;
    }
    .class-pref__car {
        width: min(420px, 100%);
    }
}

.howit {
    padding: 80px 0 90px;
    background: #fff;
}
.howit__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
    box-sizing: border-box;
}
.howit__title {
    font-family: Zodiak;
    margin: 0;
    text-align: center;
    color: #111;
    font-size: clamp(20px, 3.2vw, 42px);
    font-weight: 540;
}
.howit__subtitle {
    margin: 14px auto 0 auto;
    text-align: center;
    max-width: 820px;
    color: #222;
    font-size: 16px;
    line-height: 1.8;
}
.howit__subtitle b {
    font-weight: 750;
}
.howit__steps {
    position: relative;
    margin-top: 64px;
}
.howit__line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 70px;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}
.howit__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(26px, 4vw, 80px);
    align-items: start;
    text-align: center;
}
.howit__step {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.howit__icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d3a74a;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}
.howit__step-title {
    margin: 26px 0 10px 0;
    font-size: 22px;
    font-weight: 750;
    color: #111;
}
.howit__text {
    margin: 0;
    max-width: 420px;
    font-size: 16px;
    line-height: 1.85;
    color: #333;
}
.howit__text b {
    font-weight: 750;
    color: #111;
}
@media (max-width: 992px) {
    .howit__line {
        display: none;
    }
    .howit__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .howit__step-title {
        margin-top: 18px;
    }
}

.howit__flow {
  display: flex;
  justify-content: center;
}

.howit__flow-img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .howit {
    padding: 36px 0 40px;
  }

  .howit__subtitle {
    margin-top: 10px;
    line-height: 1.6;
    font-size: 15px;
  }

  .howit__subtitle br {
    display: none;
  }

  .howit__steps {
    margin-top: 24px;
  }

  .howit__container {
    padding: 10px 12px;
  }

  .howit__flow-img {
      margin: 0;
    width: 100%;
    max-width: none;
  }


    .howit__flow {
    padding: 40px 16px;
    box-sizing: border-box;
  }
}


.lesus-testimonials {
    padding: 80px 0 90px;
    background: #fff;
    overflow: hidden;
}
.lesus-testimonials__container.container {
    max-width: 1320px !important;
}
.lesus-testimonials__title-wrap {
    text-align: center;
    margin-bottom: 46px;
}
.lesus-testimonials__title {
    margin: 0;
    font-size: clamp(20px, 3.2vw, 42px);
    font-family: Zodiak;
    font-weight: 540;
    color: #111;
}

.lesus-testimonials .owl-carousel {
    width: 100%;
    max-width: 100%;
}
.lesus-testimonials #customers-testimonials .owl-stage-outer {
    overflow: hidden;
    padding: 12px 0 28px;
}
.lesus-testimonials #customers-testimonials .owl-stage {
    display: flex;
    align-items: stretch;
}
.lesus-testimonials #customers-testimonials .owl-item {
    display: flex;
}
.lesus-testimonials #customers-testimonials .item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 !important;
    margin-bottom: 0 !important;
    opacity: 1 !important;
    transform: none !important;
}

.lesus-tcard {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
    padding: 22px 22px 20px 22px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}
.lesus-tcard__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.lesus-tcard__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #111;
    font-size: 14px;
    flex: 0 0 44px;
}
.lesus-tcard__name {
    font-weight: 800;
    color: #111;
    font-size: 18px;
    line-height: 1.2;
}
.lesus-tcard__role {
    margin-top: 2px;
    color: #222;
    font-size: 14px;
    line-height: 1.2;
}
.lesus-tcard__text {
    margin: 0;
    color: #222;
    font-size: 15px;
    line-height: 1.8;
}

.lesus-testimonials__carousel {
    position: relative;
    padding-bottom: 54px;
}
.lesus-testimonials .owl-dots,
.lesus-testimonials .owl-nav {
    position: absolute;
    bottom: 0;
    z-index: 9999;
    pointer-events: auto;
}
.lesus-testimonials .owl-dots {
    left: 0;
    display: flex;
    gap: 14px;
    align-items: center;
}
.lesus-testimonials .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #bdbdbd;
    display: block;
    border-radius: 999px;
    margin: 0;
}
.lesus-testimonials .owl-dots .owl-dot.active span {
    width: 48px;
    background: #111;
}
.lesus-testimonials .owl-nav {
    right: 0;
    display: flex !important;
    gap: 22px;
    align-items: center;
}
.lesus-testimonials .owl-nav button {
    width: 44px;
    height: 44px;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    cursor: pointer !important;
    font-size: 34px !important;
    line-height: 44px !important;
    color: #111 !important;
    opacity: 0.6;
}
.lesus-testimonials .owl-nav button:hover {
    opacity: 1;
}
.lesus-testimonials .owl-nav .disabled {
    opacity: 0.25 !important;
    pointer-events: none !important;
}
@media (max-width: 992px) {
    .lesus-testimonials .owl-dots,
    .lesus-testimonials .owl-nav {
        position: static;
        justify-content: center;
        margin-top: 16px;
    }
}

.lesus-clients {
    background: #000 !important;
    padding: 56px 0;
    overflow: hidden;
    position: relative;
}
.lesus-clients::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        900px 260px at 50% 35%,
        rgba(210, 167, 74, 0.1),
        rgba(0, 0, 0, 0)
    );
    pointer-events: none;
}
.lesus-clients .customer-logos {
    display: block !important;
}
.lesus-clients .slick-slide {
    margin: 0 !important;
    padding: 0 18px;
    height: 110px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.lesus-clients .slick-list {
    margin: 0 -18px;
    overflow: hidden;
}
.lesus-clients .slick-track {
    display: flex !important;
    align-items: center;
}
.lesus-clients .slide {
    width: 100%;
    height: 98px;
    border-radius: 14px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    box-sizing: border-box;
    filter: none !important;
}
.lesus-clients .slide img {
    max-height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
.lesus-clients .slick-arrow {
    opacity: 0.85;
}
.lesus-clients .slick-arrow:hover {
    opacity: 1;
}
@media (max-width: 768px) {
    .lesus-clients {
        padding: 44px 0;
    }
    .lesus-clients .slick-slide {
        height: 92px;
        padding: 0 12px;
    }
    .lesus-clients .slick-list {
        margin: 0 -12px;
    }
    .lesus-clients .slide {
        height: 70px;
    }
    .lesus-clients .slide img {
        max-height: 40px;
    }
}

.lesus-landing #hours.select-box {
    width: 100% !important;
    margin: 0 !important;
}
.lesus-landing #hours .select-box__current {
    width: 100%;
}
.lesus-landing #hours .select-box__input-text {
    width: 100%;
}
.lesus-landing #hours .select-box__list {
    width: 100%;
    max-height: 240px;
    overflow: auto;
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
}
.lesus-landing #hours.is-open .select-box__list {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
}
.lesus-landing #hours.is-open .select-box__icon {
    transform: translateY(-50%) rotate(180deg);
}

.lesus-timg {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}
.lesus-timg__img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .lesus-timg {
        max-width: 92vw;
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    #app-sect.top-strip {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 28px;
        padding-bottom: 28px;
    }
}

.segmented {
    --bg: #f3f3f3;
    --border: #e6e6e6;
    --indicator: #d3a74a;
    --text: #6b6f76;
    --textActive: #111;
    --radius: 18px;
    --pad: clamp(3px, 1vw, 7px);
    --h: clamp(34px, 6vw, 58px);
    --shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    margin: clamp(24px, 4vw, 54px) auto 0;
    width: 85%;
    max-width: 1280px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--count), 1fr);
    align-items: stretch;
    height: var(--h);
    padding: var(--pad);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.segmented__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.segmented__label {
    font-family: Zodiak;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(var(--radius) - 8px);
    cursor: pointer;
    user-select: none;
    font-size: clamp(10px, 2.2vw, 18px);
    font-weight: 500;
    color: var(--text);
    transition: color 0.18s ease;
    padding: 0 8px;
}
.segmented__input:focus-visible + .segmented__label {
    outline: none;
}
.segmented:focus-within {
    box-shadow: 0 0 0 3px rgba(211, 167, 74, 0.2), var(--shadow);
}
#seg-first:checked + .segmented__label,
#seg-business:checked + .segmented__label {
    color: var(--textActive);
}
.segmented__indicator {
    position: absolute;
    z-index: 1;
    top: var(--pad);
    bottom: var(--pad);
    left: var(--pad);
    width: calc((100% - (var(--pad) * 2)) / var(--count));
    background: var(--indicator);
    border-radius: calc(var(--radius) - 8px);
    transition: transform 0.22s ease;
}
#seg-first:checked ~ .segmented__indicator {
    transform: translateX(0%);
}
#seg-business:checked ~ .segmented__indicator {
    transform: translateX(100%);
}
@media (max-width: 992px) {
    .segmented {
        --h: 56px;
        --pad: 8px;
    }
    .segmented__label {
        font-size: 18px;
    }
}

.howit__flow {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.howit__flow-img {
    width: min(1200px, 92vw);
    height: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 768px) {
    .howit__flow-img {
        width: min(6000px, 98vw);
    }
}

.clients2 {
    background: #fff;
    padding: 28px 0 34px;
}
.clients2__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.clients2__title {
    text-align: center;
    font-family: Zodiak;
    margin: 0;
    color: #000;
    font-size: clamp(20px, 3.2vw, 42px);

    font-weight: 540;
    line-height: 1.5;
    letter-spacing: 0.32px;
}
.clients2__slider {
    overflow: hidden;
    margin: 16px auto 0;
    width: 100%;
}
.clients2__track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: clients2Slide 30s linear infinite;
    will-change: transform;
}
.clients2__card {
    min-width: 150px;
    height: 120px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
}
.clients2__card img {
    width: 220px;
    height: 90px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
@keyframes clients2Slide {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
@media (max-width: 768px) {
    .clients2 {
        padding: 22px 0 28px;
    }
    .clients2__title {
        font-size: 24px;
    }
    .clients2__track {
        gap: 16px;
        animation-duration: 24s;
    }
    .clients2__card {
        min-width: 130px;
        height: 92px;
        padding: 14px;
    }
    .clients2__card img {
        width: 180px;
        height: 70px;
    }
}
.clients2__slider:hover .clients2__track {
    animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
    .clients2__track {
        animation: none;
    }
}
.booking-segment.segmented3{
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  width:100%!important;
  padding:3px!important;
  margin:12px 0 10px 0!important;
  background:#fff!important;
  border:1.4px solid #d3a74a!important;
  border-radius:8px!important;
  box-sizing:border-box;
  gap:0!important;
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

.booking-segment.segmented3::before{
  content:"";
  position:absolute;
  top:3px;
  bottom:3px;
  left:3px;
  width:calc((100% - 6px) / 3);
  background:#000;
  border-radius:6px;
  transform:translateX(0%);
  transition:transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index:0;
}

.booking-segment.segmented3:has(#fullday:checked)::before{transform:translateX(0%);}
.booking-segment.segmented3:has(#hourly:checked)::before{transform:translateX(100%);}
.booking-segment.segmented3:has(#airport:checked)::before{transform:translateX(200%);}

.booking-segment.segmented3 .seg-item{
  position:relative;
  height:44px;
  min-width:0;
  z-index:1;
}

.booking-segment.segmented3 .seg-item input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
  z-index:2;
  margin:0;
}

.booking-segment.segmented3 .seg-item label{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  color:#000;
  font-weight:500;
  font-size:18px;
  white-space:nowrap;
  user-select:none;
  border:1px solid transparent;
  border-radius:0;
  transition:color 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-segment.segmented3 .seg-item:first-child label{border-radius:6px 0 0 6px;}
.booking-segment.segmented3 .seg-item:last-child label{border-radius:0 6px 6px 0;}

.booking-segment.segmented3 .seg-item:not(:last-child) label::after{
  content:"";
  position:absolute;
  right:0;
  top:8px;
  bottom:8px;
  width:1px;
  background:#d9d9d9;
  opacity:1;
  transition:opacity 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-segment.segmented3 .seg-item input:checked + label{
  color:#fff;
}

.booking-segment.segmented3 .seg-item input:checked + label::after{
  opacity:0;
}

.booking-segment.segmented3 .seg-item input:focus-visible + label{
  outline:2px solid rgba(211,167,74,.85);
  outline-offset:2px;
}

@media (min-width:992px){
  .booking-segment.segmented3 .seg-item{height:46px;}
  .booking-segment.segmented3 .seg-item label{font-size:15px;}
}
