/* --------------------------------------------------------------------------
   8b. Inner-page header + filter bar
   -------------------------------------------------------------------------- */
.lx-pagehead {
    position: relative;
    padding-top: clamp(7rem, 5rem + 6vw, 9.5rem);
    padding-bottom: clamp(2.4rem, 1.6rem + 3vw, 4rem);
    background:
        radial-gradient(90% 120% at 85% -10%, rgba(0, 171, 199, 0.16), transparent 55%),
        linear-gradient(180deg, var(--teal-50), var(--cream));
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

/* Centered intro: the block already centers via .lx-container, so centred
   text keeps it aligned with the full-width trust bar beneath. */
.lx-pagehead__inner {
    max-width: 760px;
    text-align: center;
}

.lx-pagehead p {
    max-width: 56ch;
    margin-inline: auto;
}

.lx-pagehead h1 {
    font-family: var(--font-display);
    font-size: var(--t-h2);
    line-height: 1.04;
    letter-spacing: -0.01em;
    margin-top: 0.7rem;
    color: var(--ink);
}

.lx-pagehead p {
    margin-top: 0.9rem;
    color: var(--muted);
    font-size: var(--t-lead);
}

.lx-filterbar {
    position: sticky;
    top: 64px;
    z-index: 40;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 0;
    margin-bottom: 1.8rem;
}

.lx-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lx-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 44px;
    padding: 0 1.05rem;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--line);
    background: var(--surface);
    color: var(--ink-soft);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color var(--dur) var(--ease),
        border-color var(--dur) var(--ease),
        color var(--dur) var(--ease);
}

.lx-chip:hover {
    border-color: var(--teal-500);
    color: var(--teal-700);
}

.lx-chip.is-active {
    background: var(--teal-700);
    border-color: var(--teal-700);
    color: #fff;
}

.lx-chip__n {
    font-size: 0.78rem;
    opacity: 0.85;
}

.lx-filterbar__sort {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 600;
}

.lx-filterbar__sort select {
    appearance: none;
    -webkit-appearance: none;
    min-height: 44px;
    padding: 0 2.2rem 0 0.9rem;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--line);
    background:
        var(--lx-caret) right 0.9rem center / 12px no-repeat,
        var(--surface);
    font-family: inherit;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
}

.lx-fleet-empty {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted);
}

/* --------------------------------------------------------------------------
   9. Fleet grid + cards
   -------------------------------------------------------------------------- */
.lx-fleet-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: clamp(1.6rem, 1rem + 1.6vw, 2.6rem);
}

.lx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: clamp(1rem, 0.7rem + 1vw, 1.6rem);
}

.lx-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition:
        transform var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease),
        border-color var(--dur) var(--ease);
}

.lx-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--teal-100);
}

.lx-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(120% 90% at 50% 120%, rgba(0, 171, 199, 0.14), transparent 60%),
        linear-gradient(180deg, var(--teal-50), var(--sand));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem 0;
    overflow: hidden;
}

.lx-card__media img {
    width: 88%;
    object-fit: contain;
    filter: drop-shadow(0 18px 16px rgba(18, 36, 70, 0.22));
    transition: transform var(--dur-slow) var(--ease);
}

.lx-card:hover .lx-card__media img {
    transform: scale(1.05) translateY(-2px);
}

.lx-card__tag {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.92);
    color: var(--teal-700);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: var(--sh-sm);
}

.lx-card__tag--deal {
    background: var(--coral-cta);
    color: #fff;
}

.lx-card__tag--pop {
    background: var(--teal-700);
    color: #fff;
}

.lx-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1.15rem 1.2rem;
}

.lx-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.lx-card__type {
    margin-top: 0.15rem;
    font-size: 0.85rem;
    color: var(--teal-600);
    font-weight: 600;
}

.lx-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.55rem;
    margin-top: 0.9rem;
}

.lx-spec {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.34rem 0.6rem;
    border-radius: var(--r-sm);
    background: var(--sand);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.lx-spec svg {
    width: 1.05em;
    height: 1.05em;
    color: var(--teal-600);
    flex: none;
}

.lx-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.05rem;
}

.lx-price {
    line-height: 1.05;
}

.lx-price__amount {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--teal-700);
}

.lx-price__amount sup {
    font-size: 0.9rem;
    top: -0.6em;
    margin-right: 1px;
}

.lx-price__unit {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
}

.lx-card__foot .lx-btn {
    min-height: 46px;
    padding-inline: 1.25rem;
    font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   10. "Why us" feature band
   -------------------------------------------------------------------------- */
.lx-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: clamp(1.75rem, 1.1rem + 2.2vw, 3rem) clamp(1.5rem, 1rem + 1.8vw, 2.75rem);
}

/* Four items balance as 2x2 instead of 3 + orphan. */
.lx-feature-grid--2x2 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    max-width: 1020px;
    margin-inline: auto;
}

/* Two-up grid: four items in aligned rows of two. Collapses to a single
   column on mobile. */
.lx-feature-grid--stagger {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(2rem, 1.2rem + 3vw, 4.5rem);
    row-gap: clamp(1.75rem, 1.1rem + 2vw, 2.75rem);
    max-width: 940px;
    margin-inline: auto;
}

@media (max-width: 640px) {
    .lx-feature-grid--stagger {
        grid-template-columns: 1fr;
    }
}

/* Open icon rows, not boxed cards: the band's background does the grouping. */
.lx-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.1rem;
    align-items: start;
}

.lx-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-row: 1 / span 2;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--teal-600);
    box-shadow: var(--sh-sm);
}

.lx-feature__icon svg {
    width: 26px;
    height: 26px;
}

.lx-feature h3 {
    font-size: 1.12rem;
    font-weight: 700;
    align-self: center;
}

.lx-feature p {
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 42ch;
}

/* Split "story" band */
.lx-story {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(1.5rem, 1rem + 3vw, 4rem);
}

.lx-story__media {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-lg);
}

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

.lx-story__badge {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1rem;
    border-radius: var(--r-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--sh-md);
}

.lx-story__badge .num {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--coral-text);
    line-height: 1;
}

.lx-story__badge .lbl {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
}

.lx-story h2 {
    font-size: var(--t-h2);
    margin-top: 0.7rem;
}

.lx-story p {
    margin-top: 1rem;
    color: var(--ink-soft);
    font-size: var(--t-lead);
}

/* ---- Interactive locations map ---- */
/* let pin cards spill past the map edge without being clipped */
.lx-story__media:has(.lx-map) {
    overflow: visible;
}

.lx-map {
    position: relative;
    margin: 0;
    line-height: 0;
}

.lx-map img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-xl);
}

.lx-map__pin {
    position: absolute;
    width: 0;
    height: 0;
    z-index: 2;
    text-decoration: none;
}

/* invisible, generous hit area so hover doesn't flicker off the slim marker */
.lx-map__pin::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 56px;
    height: 60px;
    transform: translateX(-50%);
}

/* soft ground shadow that breathes under the pin tip */
.lx-map__pin::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 6px;
    transform: translate(-50%, -45%);
    border-radius: 50%;
    background: rgba(18, 40, 50, 0.32);
    filter: blur(1.5px);
    animation: lx-map-pulse 2.8s ease-in-out infinite;
}

@keyframes lx-map-pulse {
    0%,
    100% {
        transform: translate(-50%, -45%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -45%) scale(0.55);
        opacity: 0.28;
    }
}

/* teardrop map-pin marker, anchored by its tip to the coordinate */
.lx-map__marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 40px;
    color: var(--coral-cta);
    transform: translate(-50%, -100%);
    transform-origin: 50% 100%;
    filter: drop-shadow(0 4px 5px rgba(18, 40, 50, 0.35));
    transition:
        transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1),
        color 0.25s ease;
}

.lx-map__marker path {
    fill: currentColor;
}

.lx-map__marker circle {
    fill: #fff;
}

.lx-map__pin:hover,
.lx-map__pin:focus-visible {
    z-index: 6;
    outline: none;
}

/* hover / focus: the pin springs up and deepens to brand navy */
.lx-map__pin:hover .lx-map__marker,
.lx-map__pin:focus-visible .lx-map__marker {
    transform: translate(-50%, -100%) translateY(-7px) scale(1.14);
    color: var(--teal-700);
}

.lx-map__pin:focus-visible .lx-map__marker circle {
    fill: var(--teal-200);
}

/* location card revealed above the pin on hover / focus */
.lx-map__card {
    position: absolute;
    left: 0;
    bottom: 47px;
    transform: translateX(-50%) translateY(8px) scale(0.96);
    transform-origin: 50% 130%;
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: max-content;
    max-width: 210px;
    padding: 0.62rem 0.82rem;
    border-radius: var(--r-md);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.24s ease,
        transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 0.24s;
}

/* arrow pointing down to the pin */
.lx-map__card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 12px;
    height: 12px;
    transform: translateX(-50%) rotate(45deg);
    background: var(--surface);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.lx-map__card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.12;
    color: var(--ink);
}

.lx-map__card-sub {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink-soft);
}

.lx-map__pin:hover .lx-map__card,
.lx-map__pin:focus-visible .lx-map__card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.lx-map__hint {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    margin: 0;
    padding: 0.34rem 0.62rem;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.86);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid var(--line);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
    color: var(--ink-soft);
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .lx-map__pin::after {
        animation: none;
    }
    .lx-map__pin:hover .lx-map__marker,
    .lx-map__pin:focus-visible .lx-map__marker {
        transform: translate(-50%, -100%) scale(1.1);
    }
}

.lx-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem 2.4rem;
    margin-top: 1.6rem;
}

.lx-stat .n {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--teal-700);
    line-height: 1;
}

.lx-stat .l {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

/* Partner logo grid (About page) */
.lx-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: clamp(1rem, 0.6rem + 1.2vw, 1.8rem);
    max-width: 980px;
    margin-inline: auto;
}

.lx-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    transition:
        transform var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease),
        border-color var(--dur) var(--ease);
}

.lx-partner:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--teal-100);
}

.lx-partner img {
    max-height: 88px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: transform var(--dur-slow) var(--ease);
}

/* Logos stay full-colour at rest; the card lift + a gentle logo scale are the
   hover interaction. */
.lx-partner:hover img {
    transform: scale(1.05);
}

/* Contact page layout */
.lx-contact {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
    align-items: start;
}

.lx-contact__list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 1.6rem;
}

.lx-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.lx-contact-row__icon {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--teal-50);
    color: var(--teal-600);
}

.lx-contact-row__icon svg {
    width: 22px;
    height: 22px;
}

.lx-contact-row .k {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.lx-contact-row .v {
    display: block;
    font-weight: 600;
    color: var(--ink);
    margin-top: 0.15rem;
}

.lx-contact-row .v a {
    color: var(--teal-700);
}

.lx-contact-row .v a:hover {
    color: var(--coral-text);
}

/* Stacked, clickable location links (match the about-page map labels) */
.lx-contact-row .v.lx-contact-locs {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.35rem;
}

.lx-contact-loc {
    display: inline-flex;
    flex-direction: column;
    gap: 0.05rem;
    width: max-content;
    max-width: 100%;
}

.lx-contact-loc__name {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    font-weight: 700;
    color: var(--teal-700);
    transition: color 0.2s ease;
}

.lx-contact-loc__name svg {
    width: 13px;
    height: 13px;
    opacity: 0.55;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.lx-contact-loc:hover .lx-contact-loc__name,
.lx-contact-loc:focus-visible .lx-contact-loc__name {
    color: var(--coral-text);
}

.lx-contact-loc:hover .lx-contact-loc__name svg,
.lx-contact-loc:focus-visible .lx-contact-loc__name svg {
    opacity: 1;
    transform: translate(1px, -1px);
}

.lx-contact-loc__sub {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
}

.lx-formcard {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-md);
    padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem);
}

.lx-formcard h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.lx-formcard > p {
    color: var(--muted);
    margin-top: 0.3rem;
    margin-bottom: 0.5rem;
}

.lx-form__done {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.lx-formcard.is-done .lx-form,
.lx-formcard.is-done > p,
.lx-formcard.is-done > h2 {
    display: none;
}

.lx-formcard.is-done .lx-form__done {
    display: flex;
}

.lx-form__done .tick {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--success);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    box-shadow: 0 12px 30px rgba(31, 157, 87, 0.4);
}

.lx-form__done .tick svg {
    width: 34px;
    height: 34px;
}

.lx-form__done h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
}

.lx-form__done p {
    color: var(--muted);
    margin-top: 0.5rem;
    max-width: 34ch;
}

@media (max-width: 860px) {
    .lx-contact {
        grid-template-columns: 1fr;
    }
}

/* Terms / prose page */
.lx-prose {
    max-width: 760px;
    margin-inline: auto;
}

/* `.lx` prefix beats the `.lx p { margin: 0 }` reset so the bottom gap below
   the card actually applies (a bare `.lx-prose__intro` loses on specificity). */
.lx .lx-prose__intro {
    color: var(--ink-soft);
    font-size: var(--t-lead);
    padding: 1.2rem 1.3rem;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--r-md);
    margin-bottom: 2.4rem;
}

.lx-prose h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-top: 2.4rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
}

.lx-prose h2:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.lx-prose h2 .lx-prose__n {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--coral-text);
    flex: none;
}

.lx-prose p {
    color: var(--ink-soft);
    line-height: 1.7;
    margin-top: 0.7rem;
}

.lx-prose ul {
    list-style: none;
    padding: 0;
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.lx-prose li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.lx-prose li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal-500);
}

.lx-prose a {
    color: var(--teal-700);
    font-weight: 600;
}

.lx-prose a:hover {
    color: var(--coral-text);
}

/* Offers page — promo flyer cards */
.lx-offers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(1rem, 0.7rem + 1vw, 1.6rem);
}

.lx-offer {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition:
        transform var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease),
        border-color var(--dur) var(--ease);
}

.lx-offer:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: var(--teal-100);
}

.lx-offer__media {
    position: relative;
}

.lx-offer__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}

.lx-offer:hover .lx-offer__media img {
    transform: scale(1.05);
}

.lx-offer__tag {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--r-pill);
    background: var(--coral-cta);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: var(--sh-sm);
}

.lx-offer__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
}

.lx-offer__foot p {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
}

.lx-offer__foot .lx-btn {
    min-height: 44px;
    padding-inline: 1.1rem;
    font-size: 0.95rem;
    flex: none;
}

/* --------------------------------------------------------------------------
   11. Testimonials
   -------------------------------------------------------------------------- */
.lx-reviews-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.lx-reviews-score {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    box-shadow: var(--sh-sm);
    font-weight: 600;
}

.lx-reviews-score strong {
    font-size: 1.15rem;
}

.lx-reviews-score span {
    color: var(--muted);
    font-size: 0.88rem;
}

.lx-review {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 1.5rem 1.5rem 1.4rem;
    box-shadow: var(--sh-sm);
    height: 100%;
}

.lx-review .lx-stars {
    font-size: 1rem;
    margin-bottom: 0.85rem;
}

.lx-review__quote {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.62;
}

.lx-review__by {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.lx-review__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--teal-700);
    color: #fff;
    font-weight: 700;
    flex: none;
}

.lx-review__by .nm {
    font-weight: 700;
    font-size: 0.95rem;
}

.lx-review__by .loc {
    font-size: 0.82rem;
    color: var(--muted);
}

.lx-review__src {
    margin-left: auto;
    color: var(--muted);
}

.lx-review__src svg {
    width: 20px;
    height: 20px;
}

/* --------------------------------------------------------------------------
   12. FAQ
   -------------------------------------------------------------------------- */
.lx-faq {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(1.5rem, 1rem + 3vw, 4rem);
    align-items: start;
}

.lx-faq__aside .lx-btn {
    margin-top: 1.4rem;
}

.lx-faq__list {
    display: flex;
    flex-direction: column;
}

.lx-acc {
    border-bottom: 1px solid var(--line);
}

.lx-acc__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0.2rem;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
}

.lx-acc__btn:hover {
    color: var(--teal-700);
}

.lx-acc__icon {
    width: 30px;
    height: 30px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sand);
    color: var(--teal-700);
    transition:
        transform var(--dur) var(--ease),
        background-color var(--dur) var(--ease);
}

.lx-acc__icon svg {
    width: 16px;
    height: 16px;
}

.lx-acc[data-open="true"] .lx-acc__icon {
    transform: rotate(45deg);
    background: var(--coral-cta);
    color: #fff;
}

.lx-acc__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--dur-slow) var(--ease);
}

.lx-acc[data-open="true"] .lx-acc__panel {
    grid-template-rows: 1fr;
}

.lx-acc__panel > div {
    overflow: hidden;
}

.lx-acc__panel p {
    padding: 0 2rem 1.2rem 0.2rem;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

/* Extra FAQs behind the "Show more" toggle. The questions are server-rendered
   so they are always in the HTML; the collapse only kicks in once faq.js adds
   `.js-collapsible` (so without JS every question stays visible). faq.js then
   animates the wrapper height for a smooth, slow reveal; `inert` (toggled in
   faq.js around the transition) keeps the hidden questions out of the tab order
   and the accessibility tree. */
.lx-faq__extra {
    overflow: hidden;
}

.lx-faq__list.js-collapsible .lx-faq__extra {
    height: 0;
    opacity: 0;
    transition:
        height 0.8s cubic-bezier(0.65, 0, 0.35, 1),
        opacity 0.6s var(--ease);
}

.lx-faq__list.is-expanded .lx-faq__extra {
    opacity: 1;
}

.lx-faq__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.3rem;
    min-height: 48px;
    padding: 0 1.4rem;
    border: 1.5px solid var(--line);
    border-radius: var(--r-pill);
    background: var(--surface);
    color: var(--teal-700);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    transition:
        background-color var(--dur) var(--ease),
        border-color var(--dur) var(--ease);
}

.lx-faq__more:hover {
    border-color: var(--teal-500);
    background: var(--teal-50);
}

.lx-faq__more svg {
    width: 1.1em;
    height: 1.1em;
    transition: transform var(--dur) var(--ease);
}

.lx-faq__list.is-expanded .lx-faq__more svg {
    transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   13. CTA band
   -------------------------------------------------------------------------- */
.lx-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: var(--r-xl);
    padding: clamp(2.2rem, 1.4rem + 3vw, 4rem);
    background:
        linear-gradient(120deg, rgba(18, 36, 70, 0.92), rgba(26, 54, 104, 0.78)),
        var(--cta-img, none) center / cover no-repeat;
    box-shadow: var(--sh-lg);
}

.lx-cta__inner {
    position: relative;
    max-width: 640px;
}

.lx-cta h2 {
    font-family: var(--font-display);
    font-size: var(--t-h2);
    line-height: 1.04;
}

.lx-cta p {
    margin-top: 0.85rem;
    font-size: var(--t-lead);
    color: rgba(255, 255, 255, 0.9);
}

.lx-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.lx-footer {
    background: var(--teal-900);
    color: rgba(255, 255, 255, 0.78);
    padding-block: clamp(2.5rem, 1.6rem + 3vw, 4.5rem) 1.6rem;
}

.lx-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: clamp(1.6rem, 1rem + 2.4vw, 3.5rem);
}

.lx-footer__brand img {
    height: 30px;
    margin-bottom: 1rem;
}

.lx-footer__brand p {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 34ch;
}

.lx-footer__brand .lx-pill {
    margin-top: 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.lx-footer__brand .lx-pill svg {
    color: #fff;
}

.lx-footer h4 {
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.lx-footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.lx-footer a:hover {
    color: #fff;
}

.lx-footer__contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.86);
}

.lx-footer__contact svg {
    width: 1.05em;
    height: 1.05em;
    color: var(--teal-200);
    flex: none;
}

.lx-footer__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-top: clamp(2rem, 1.4rem + 2vw, 3.2rem);
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
}

.lx-footer__bar a:hover {
    color: #fff;
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   15. Booking modal (simplified, conversion-first)
   -------------------------------------------------------------------------- */
.lx-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: end center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity var(--dur) var(--ease),
        visibility 0s var(--ease) var(--dur);
}

.lx-modal[data-open="true"] {
    transition:
        opacity var(--dur) var(--ease),
        visibility 0s;
}

@media (min-width: 720px) {
    .lx-modal {
        place-items: center;
    }
}

.lx-modal[data-open="true"] {
    opacity: 1;
    visibility: visible;
}

.lx-modal__scrim {
    position: absolute;
    inset: 0;
    background: rgba(18, 36, 70, 0.55);
    backdrop-filter: blur(4px);
}

.lx-modal__panel {
    position: relative;
    width: min(560px, 100%);
    max-height: 92svh;
    overflow-y: auto;
    background: var(--cream);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    box-shadow: var(--sh-lg);
    transform: translateY(24px);
    transition: transform var(--dur-slow) var(--ease);
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 720px) {
    .lx-modal__panel {
        border-radius: var(--r-xl);
        transform: scale(0.96);
    }
}

.lx-modal[data-open="true"] .lx-modal__panel {
    transform: none;
}

.lx-modal__head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 1.4rem 1rem;
    background: linear-gradient(var(--cream), rgba(244, 248, 251, 0.92));
    border-bottom: 1px solid var(--line-soft);
}

.lx-modal__head h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.lx-modal__head p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

.lx-modal__close {
    width: 42px;
    height: 42px;
    flex: none;
    border: 0;
    border-radius: 50%;
    background: var(--sand);
    color: var(--ink);
    font-size: 1.35rem;
    cursor: pointer;
    transition: background-color var(--dur) var(--ease);
}

.lx-modal__close:hover {
    background: var(--sand-deep);
}

.lx-modal__body {
    padding: 1.2rem 1.4rem 1.5rem;
}

/* Summary card */
.lx-summary {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
}

.lx-summary__car {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(180deg, var(--teal-50), #fff);
    border-bottom: 1px solid var(--line-soft);
}

.lx-summary__car img {
    width: 92px;
    /* Fixed box + contain: car photos have varying aspect ratios (1.41–1.96),
       so height:auto made the card jump as you switched cars. A constant box
       keeps the card height stable; contain preserves each car's shape. */
    height: 56px;
    object-fit: contain;
    flex: none;
    filter: drop-shadow(0 8px 8px rgba(18, 36, 70, 0.18));
}

.lx-summary__car .nm {
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.lx-summary__car .ty {
    font-size: 0.82rem;
    color: var(--teal-600);
    font-weight: 600;
}

.lx-summary__rows {
    padding: 0.4rem 1rem;
}

.lx-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.92rem;
}

.lx-summary__row:last-child {
    border-bottom: 0;
}

.lx-summary__row .k {
    color: var(--muted);
}

.lx-summary__row .v {
    font-weight: 600;
    text-align: right;
}

.lx-summary__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: var(--teal-900);
    color: #fff;
}

.lx-summary__total .k {
    font-size: 0.9rem;
}

.lx-summary__total .k small {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.74rem;
    margin-top: 0.1rem;
}

.lx-summary__total .v {
    font-family: var(--font-display);
    font-size: 1.55rem;
}

.lx-summary__total .v small {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.lx-form {
    margin-top: 1.3rem;
}

.lx-form__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0.95rem 0 0.4rem;
}

.lx-form__label .req {
    color: var(--coral-text);
}

.lx-input {
    width: 100%;
    min-height: 52px;
    padding: 0 0.95rem;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    transition:
        border-color var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease);
}

textarea.lx-input {
    min-height: 84px;
    max-height: 220px;
    padding-top: 0.7rem;
    line-height: 1.55;
    resize: vertical;
}

.lx-input::placeholder {
    color: var(--muted);
    opacity: 1;
}

.lx-input:focus {
    outline: 0;
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(0, 171, 199, 0.18);
}

.lx-input.is-error {
    border-color: var(--coral-text);
    box-shadow: 0 0 0 3px rgba(216, 58, 23, 0.16);
}

/* Phone field with country dialling-code selector */
.lx-phone {
    display: flex;
    align-items: stretch;
}
.lx-phone__code {
    flex: 0 0 6.25rem;
    width: 6.25rem;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    min-height: 52px;
    padding: 0 1.5rem 0 0.85rem;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235b5b5b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    border: 1.5px solid var(--line);
    border-right: 0;
    border-radius: var(--r-md) 0 0 var(--r-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    text-overflow: ellipsis;
    transition: border-color var(--dur) var(--ease);
}
.lx-phone__code:focus {
    outline: 0;
    border-color: var(--teal-500);
}
.lx-phone__code.is-error {
    border-color: var(--coral-text);
}
.lx-phone__num {
    flex: 1 1 auto;
    min-width: 0;
    border-radius: 0 var(--r-md) var(--r-md) 0;
}

.lx-form__two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Uniform vertical rhythm in the booking modal. Every field group leads with a
   label, so one rule drives the gap between groups instead of ad-hoc inline
   margins (which made the spacing uneven). Scoped to .lx-modal so the contact
   form's own label spacing is untouched. */
.lx-modal .lx-form__label {
    margin-top: 0;
}
.lx-modal__body form > .lx-form__two,
.lx-modal__body form > .lx-form__label {
    margin-top: 0.9rem;
}

/* Required driver-details section */
.lx-driver {
    margin-top: 1.5rem;
    padding-top: 1.3rem;
    border-top: 1px solid var(--line);
}

.lx-form__heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.3rem 0.75rem;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.2rem;
}

.lx-form__heading span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
}

/* Optional documents disclosure */
.lx-disclosure {
    margin-top: 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: #fff;
    overflow: hidden;
}

.lx-disclosure > summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
}

.lx-disclosure > summary::-webkit-details-marker {
    display: none;
}

.lx-disclosure > summary .chev {
    margin-left: auto;
    transition: transform var(--dur) var(--ease);
    color: var(--teal-600);
}

.lx-disclosure[open] > summary .chev {
    transform: rotate(180deg);
}

.lx-disclosure > summary small {
    color: var(--muted);
    font-weight: 500;
}

.lx-disclosure__inner {
    padding: 0 1rem 1rem;
}

.lx-modal__actions {
    margin-top: 1.5rem;
}

/* `.lx ` prefix needed to beat the global `.lx p` margin reset in base.css. */
.lx .lx-modal__reassure {
    margin-top: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--muted);
    text-align: center;
}

.lx-modal__reassure svg {
    width: 1.05em;
    height: 1.05em;
    color: var(--success);
    flex: none;
}

/* Success state */
.lx-modal__done {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.6rem 1.6rem 3rem;
}

.lx-modal.is-done .lx-modal__body,
.lx-modal.is-done .lx-modal__head .lx-modal__titles {
    display: none;
}

.lx-modal.is-done .lx-modal__done {
    display: flex;
}

.lx-modal__done .tick {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--success);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    box-shadow: 0 12px 30px rgba(31, 157, 87, 0.4);
    animation: lx-pop var(--dur-slow) var(--ease);
}

.lx-modal__done .tick svg {
    width: 38px;
    height: 38px;
}

@keyframes lx-pop {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }
    60% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.lx-modal__done h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
}

.lx-modal__done p {
    margin-top: 0.6rem;
    color: var(--muted);
    max-width: 36ch;
}

.lx-btn[aria-busy="true"] {
    pointer-events: none;
    opacity: 0.85;
}

.lx-btn[aria-busy="true"] .lx-btn__label {
    visibility: hidden;
}

.lx-btn__spin {
    display: none;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    position: absolute;
    animation: lx-spin 0.7s linear infinite;
}

.lx-btn[aria-busy="true"] .lx-btn__spin {
    display: block;
}

@keyframes lx-spin {
    to {
        transform: rotate(360deg);
    }
}
.lx-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
