:root {
    --bg: #070A0F;
    --text: #F2F4F8;
    --muted: rgba(242, 244, 248, .70);
    --line: rgba(255, 255, 255, .12);
    --shadow: 0 30px 70px rgba(0, 0, 0, .55);
    --shadow2: 0 14px 30px rgba(0, 0, 0, .35);
    --brand1: #2F6BFF;
    --brand2: #7C3AED;
    --brand3: #00D1B2;
    --radius: 22px;
    --hero-right-clip: 48%;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Elementor reset for this custom layout */
.elementor-page .elementor,
.elementor-page .elementor-section,
.elementor-page .elementor-container,
.elementor-page .elementor-column,
.elementor-page .elementor-widget-wrap,
.elementor-page .e-con,
.elementor-page .e-parent {
    max-width: 100% !important;
}

.elementor-page .elementor-section,
.elementor-page .elementor-container,
.elementor-page .elementor-column,
.elementor-page .elementor-widget-wrap,
.elementor-page .e-con {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

.elementor-widget-html,
.elementor-widget-html .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

body.elementor-page {
    overflow-x: hidden;
}

/* Elementor reset for this custom layout */
body.elementor-page,
body.elementor-page .elementor,
body.elementor-page .elementor-section,
body.elementor-page .elementor-container,
body.elementor-page .elementor-column,
body.elementor-page .elementor-widget-wrap,
body.elementor-page .e-con,
body.elementor-page .e-parent,
body.elementor-page .elementor-widget-html,
body.elementor-page .elementor-widget-html .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
}

body.elementor-page {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(1000px 700px at 85% 5%, rgba(47, 107, 255, .10), transparent 55%),
        radial-gradient(900px 600px at 15% 0%, rgba(124, 58, 237, .09), transparent 60%),
        var(--bg);
}

a {
    color: inherit;
}

.met-custom-site {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.met-custom-site .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 8px 20px 60px;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 8px 20px 60px;
}



/* NAV */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 4px 18px;
    margin: 8px 0 14px;
    min-height: 52px;
    flex-wrap: nowrap;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: relative;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex: 0 0 auto;
    padding-left: 2px;
}

.logo {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    filter:
        drop-shadow(0 6px 18px rgba(0, 0, 0, .6))
        drop-shadow(0 0 12px rgba(255, 215, 0, .25));
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 850;
    color: rgba(255, 255, 255, .92);
    white-space: nowrap;
}

.navlinks a {
    text-decoration: none;
    opacity: .88;
    transition: all .18s ease;
    padding: 10px 4px;
    position: relative;
}

.navlinks a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #D4AF37, #F5E6A8);
    transition: width .2s ease;
}

.navlinks a:hover {
    opacity: 1;
    color: #fff;
}

.navlinks a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    white-space: nowrap;
    flex: 0 0 auto;
}

.pill {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .28);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .18s ease;
}

.pill:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .08);
}

.wa-ico {
    width: 18px;
    height: 18px;
    display: inline-block;
    color: #25D366;
    flex-shrink: 0;
}

.btn:hover .wa-ico {
    filter: drop-shadow(0 0 6px #25D366);
}

.btn {
    border: 1px solid rgba(212, 175, 55, .22);
    background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    color: #fff;
    padding: 10px 18px 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .30);
    transition: transform .15s, opacity .15s, background .15s, border-color .15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-1px);
    opacity: .98;
    background: linear-gradient(135deg, rgba(212, 175, 55, .14), rgba(255, 255, 255, .06));
    border-color: rgba(212, 175, 55, .40);
}

/* FIXED HAMBURGER */
.menu-btn {
    display: none;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .30);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
}

.menu-btn svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* FIXED MOBILE MENU */
.mobile-menu {
    display: none;
}

.mobile-menu.open {
    display: flex;
}

/* HERO */
.hero {
    margin-top: 20px;
}

.hero-banner {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 600px;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, .02);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: var(--hero-right-clip);
    background: #000;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 900ms ease;
    filter: saturate(1.02) contrast(1.10);
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 50% 80%;
    transform: scale(1.20);
    transform-origin: 50% 55%;
    filter: saturate(1.02) contrast(1.10);
    opacity: 0;
    transition: opacity 900ms ease;
}

.hero-bg img.show {
    opacity: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1100px 750px at 15% 10%, rgba(47, 107, 255, .20), transparent 60%),
        radial-gradient(900px 700px at 90% 0%, rgba(124, 58, 237, .18), transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, .30), rgba(0, 0, 0, .55));
    pointer-events: none;
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% - var(--hero-right-clip));
    width: 42px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .55));
    z-index: 1;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 20px 28px 30px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 26px;
    align-items: start;
    min-height: 600px;
}

.hero-copy {
    padding: 0 8px 0;
    max-width: 620px;
}

.hero-copy h1 {
    margin: 0 0 14px;
    font-size: 64px;
    line-height: 0.98;
    letter-spacing: -1.4px;
    font-weight: 950;
    color: #fff;
    text-shadow: 0 18px 55px rgba(0, 0, 0, .55);
}

.hero-copy p {
    margin: 0;
    font-size: 13px;
    line-height: 1.85;
    font-weight: 650;
    color: rgba(255, 255, 255, .80);
    max-width: 560px;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.dots {
    position: absolute;
    left: 34px;
    bottom: 24px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(0, 0, 0, .25);
    cursor: pointer;
    transition: transform .15s, background .15s, border-color .15s;
}

.dot.active {
    background: linear-gradient(90deg, rgba(47, 107, 255, .90), rgba(124, 58, 237, .90));
    border-color: rgba(255, 255, 255, .42);
    transform: scale(1.15);
}

.booking {
    position: relative;
    z-index: 3;
    width: 100%;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(20, 22, 30, .62);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .48);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.booking-inner {
    padding: 18px;
}

.booking-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    margin-bottom: 14px;
}

.booking-head h3 {
    margin: 0;
    font-size: 14px;
    letter-spacing: -.2px;
    font-weight: 950;
    color: #fff;
}

.booking-head p {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .75);
    font-weight: 650;
    max-width: 260px;
}

.badge {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(47, 107, 255, .14);
    border: 1px solid rgba(47, 107, 255, .28);
    color: rgba(219, 231, 255, .95);
    font-weight: 950;
    font-size: 11px;
    white-space: nowrap;
}

.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tab {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    padding: 9px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    cursor: pointer;
    color: rgba(255, 255, 255, .92);
    transition: transform .12s, background .12s, border-color .12s;
    user-select: none;
}

.tab.active {
    background: linear-gradient(90deg, rgba(47, 107, 255, .22), rgba(124, 58, 237, .18));
    border-color: rgba(255, 255, 255, .22);
}

.tab:hover {
    transform: translateY(-1px);
}

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.full {
    grid-column: 1 / -1;
}

.field {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 10px 12px 12px;
    transition: box-shadow .15s, border-color .15s, background .15s;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
}

.met-custom-site .field {
    cursor: text;
}

.met-custom-site .field:has(select) {
    cursor: pointer;
}

.met-custom-site .field:has(input[type="date"]),
.met-custom-site .field:has(input[type="time"]) {
    cursor: pointer;
}

.field:focus-within {
    border-color: rgba(47, 107, 255, .55);
    box-shadow: 0 14px 26px rgba(47, 107, 255, .22);
    background: rgba(255, 255, 255, .08);
}

.label {
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .70);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.label small {
    font-size: 10px;
    letter-spacing: .2px;
    text-transform: none;
    opacity: .9;
    font-weight: 800;
    color: rgba(255, 255, 255, .62);
}

.met-custom-site .field input,
.met-custom-site .field select {
    width: 100%;
    border: 0 !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 46px;
    font-family: inherit;
    font-size: 13px;
    color: #fff;
    font-weight: 750;
    appearance: none;
    -webkit-appearance: none;
}

.met-custom-site .field input::placeholder {
    color: rgba(255, 255, 255, .55);
}

.met-custom-site .field input[type="date"],
.met-custom-site .field input[type="time"] {
    color-scheme: dark;
    cursor: pointer;
}

.met-custom-site .field select {
    cursor: pointer;
}

.met-custom-site .field select option {
    color: #111;
}

.location-btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2px;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
}

.location-btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(47, 107, 255, .18), rgba(124, 58, 237, .16));
    border-color: rgba(255, 255, 255, .18);
}

.location-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

.switchrow {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 4px 2px;
    color: #fff;
}

.switchrow .left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

.toggle {
    position: relative;
    width: 48px;
    height: 28px;
    flex: 0 0 auto;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.track {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .18);
    border-radius: 999px;
    transition: background .2s;
}

.thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .35);
    transition: left .2s;
}

.toggle input:checked~.track {
    background: rgba(47, 107, 255, .75);
}

.toggle input:checked~.thumb {
    left: 24px;
}

.switchrow .hint {
    font-size: 11px;
    color: rgba(255, 255, 255, .72);
    font-weight: 750;
    text-align: right;
    white-space: nowrap;
}

.returnWrap {
    grid-column: 1 / -1;
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease;
}

.returnWrap.open {
    max-height: 220px;
}

.actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.primary {
    flex: 1;
    border: 0;
    background: linear-gradient(90deg, rgba(47, 107, 255, .90), rgba(124, 58, 237, .90));
    color: #fff;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 950;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
    transition: transform .15s, opacity .15s;
}

.primary:hover {
    transform: translateY(-1px);
    opacity: .96;
}

.ghost {
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    padding: 12px 12px;
    border-radius: 14px;
    font-weight: 950;
    font-size: 13px;
    cursor: pointer;
    color: #fff;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .30);
}

.note {
    margin-top: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, .76);
    font-weight: 700;
    line-height: 1.5;
}

.section {
    margin-top: 46px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-inner {
    padding: 26px;
}

.section-title {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -.6px;
}

.section-sub {
    margin: 0 0 18px;
    color: var(--muted);
    font-weight: 650;
    font-size: 13px;
    line-height: 1.7;
    max-width: 760px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .30);
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(47, 107, 255, .10);
    border: 1px solid rgba(47, 107, 255, .18);
    display: grid;
    place-items: center;
}

.card h4 {
    margin: 10px 0 6px;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: -.2px;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    font-weight: 650;
}

footer {
    margin-top: 46px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 4px 0;
    flex-wrap: wrap;
}

/* MOBILE */
@media (max-width: 980px) {
    html,
    body {
        overflow-x: hidden;
    }

    .met-custom-site,
    .met-custom-site .container,
    .container {
        width: 100%;
        max-width: 100%;
    }

    .container,
    .met-custom-site .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 0;
        padding-bottom: 40px;
    }

    .nav {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        gap: 10px;
        margin-left: 8px;
        margin-right: 8px;
    }

    .brand {
        order: 1;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-width: 0;
        padding-left: 0;
    }

    .logo {
        height: 46px;
        width: auto;
        max-width: 120px;
        object-fit: contain;
    }

    .navlinks {
        display: none;
    }

    .nav-cta {
        order: 2;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 8px;
        flex: 1 1 auto;
        min-width: 0;
    }

    .pill,
    .btn {
        flex: 0 0 auto;
        max-width: 100%;
        padding: 10px 12px;
        font-size: 12px;
    }

    .menu-btn {
        display: inline-flex;
        width: 52px;
        height: 52px;
        min-width: 52px;
        flex: 0 0 52px;
    }

    /* fixed overlay menu */
    .mobile-menu {
        position: fixed;
        top: 84px;
        left: 8px;
        right: 8px;
        width: auto;
        margin-top: 0;
        padding: 12px;
        border: 1px solid var(--line);
        background: rgba(10, 12, 18, .96);
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
        gap: 10px;
        flex-direction: column;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        z-index: 9999;
    }

    .mobile-menu a {
        display: block;
        padding: 14px 14px;
        border-radius: 14px;
        text-decoration: none;
        font-weight: 900;
        font-size: 15px;
        color: rgba(255, 255, 255, .92);
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .10);
    }

    .mobile-menu.open {
        display: flex;
    }

    .hero,
    .section,
    .final-cta,
    .site-footer {
        margin-left: 0;
        margin-right: 0;
    }

    .hero {
        margin-top: 14px;
    }

    .hero-banner {
        min-height: 0;
        border-radius: 22px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px 14px 18px;
        min-height: 0;
    }

    .hero-copy {
        max-width: 100%;
        padding: 0;
    }

    .hero-copy h1 {
        font-size: 38px;
        line-height: 1.02;
        letter-spacing: -1px;
        margin-bottom: 12px;
    }

    .hero-copy p {
        font-size: 13px;
        line-height: 1.7;
        max-width: 100%;
    }

    .hero-bg {
        right: 0;
    }

    .hero-banner::after {
        display: none;
    }

    .booking {
        width: 100%;
        max-width: 100%;
        border-radius: 22px;
    }

    .booking-inner {
        padding: 16px;
    }

    .booking-head {
        gap: 10px;
        align-items: center;
    }

    .booking-head h3 {
        font-size: 13px;
    }

    .booking-head p {
        display: none;
    }

    .badge {
        font-size: 10px;
        padding: 7px 10px;
    }

    .tabs {
        gap: 8px;
    }

    .tab {
        font-size: 12px;
        padding: 9px 12px;
    }

    .form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .field,
    .full,
    .switchrow,
    .returnWrap {
        grid-column: 1 / -1;
    }

    .field {
        padding: 10px 12px 12px;
        border-radius: 14px;
    }

    .label {
        font-size: 10px;
        gap: 8px;
    }

    .label small {
        font-size: 10px;
    }

    input,
    select {
        font-size: 16px;
    }

    .switchrow {
        padding: 8px 2px 2px;
        gap: 10px;
        align-items: center;
    }

    .switchrow .left {
        font-size: 12px;
        gap: 10px;
    }

    .switchrow .hint {
        font-size: 11px;
        white-space: nowrap;
    }

    .returnWrap.open {
        max-height: 260px;
    }

    .actions {
        margin-top: 12px;
        gap: 10px;
        align-items: stretch;
    }

    .primary {
        padding: 13px 14px;
        font-size: 13px;
    }

    .ghost {
        padding: 13px 12px;
        font-size: 13px;
    }

    .note {
        font-size: 11px;
        line-height: 1.55;
    }

    .dots {
        left: 18px;
        bottom: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-inner {
        padding: 18px 14px;
    }
}

@media (max-width: 640px) {
    .container,
    .met-custom-site .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .nav {
        padding: 10px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        flex-wrap: nowrap;
        margin-left: 6px;
        margin-right: 6px;
    }

    .brand {
        flex: 0 0 72px;
        width: 72px;
        min-width: 72px;
        max-width: 72px;
        overflow: hidden;
    }

    .logo {
        height: 34px;
        width: 100%;
        max-width: 72px;
        object-fit: contain;
        object-position: left center;
    }

    .nav-cta {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 6px;
    }

    .pill,
    .btn {
        padding: 9px 10px;
        font-size: 11px;
        min-width: auto;
    }

    .btn {
        padding: 9px 10px;
    }

    .menu-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        flex: 0 0 50px;
    }

    .menu-btn svg {
        width: 24px;
        height: 24px;
    }

    .mobile-menu {
        left: 6px;
        right: 6px;
        top: 78px;
    }

    .hero-banner,
    .section,
    .final-cta-inner,
    .site-footer {
        border-radius: 16px;
    }

    .hero-inner {
        padding: 14px 12px 16px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .booking {
        border-radius: 20px;
    }

    .booking-inner {
        padding: 14px;
    }

    .booking-head {
        align-items: flex-start;
    }

    .badge {
        align-self: flex-start;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .tab {
        flex: 0 0 auto;
    }

    .actions {
        flex-direction: row;
    }

    .primary {
        flex: 1 1 auto;
    }

    .ghost {
        flex: 0 0 auto;
    }

    .section-inner {
        padding: 18px 14px;
    }
}

@media (max-width: 480px) {
    .container,
    .met-custom-site .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .nav {
        padding: 8px 10px;
        margin: 6px 4px 10px;
        border-radius: 14px;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .brand {
        flex: 0 0 64px;
        width: 64px;
        min-width: 64px;
        max-width: 64px;
        overflow: hidden;
    }

    .logo {
        height: 30px;
        width: 100%;
        max-width: 64px;
        object-fit: contain;
        object-position: left center;
    }

    .nav-cta {
        flex: 1 1 auto;
        justify-content: flex-end;
        gap: 6px;
        min-width: 0;
    }

    .wa-text {
        display: none;
    }

    .pill .call-label {
        display: none;
    }

    .pill,
    .btn {
        min-width: auto;
        justify-content: center;
        padding: 8px 9px;
        font-size: 10px;
    }

    .menu-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        flex: 0 0 48px;
    }

    .menu-btn svg {
        width: 22px;
        height: 22px;
    }

    .mobile-menu {
        left: 4px;
        right: 4px;
        top: 72px;
        padding: 10px;
        border-radius: 14px;
    }

    .mobile-menu a {
        padding: 13px 12px;
        font-size: 14px;
    }

    .hero {
        margin-top: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-banner {
        border-radius: 14px;
    }

    .section,
    .site-footer {
        border-radius: 14px;
    }

    .hero-inner {
        padding: 12px 10px 14px;
        gap: 14px;
    }

    .hero-copy h1 {
        font-size: 30px;
        line-height: 1.05;
        letter-spacing: -0.8px;
    }

    .hero-copy p {
        font-size: 12px;
        line-height: 1.65;
    }

    .booking {
        border-radius: 18px;
    }

    .booking-inner {
        padding: 12px;
    }

    .booking-head {
        padding-bottom: 10px;
        margin-bottom: 12px;
    }

    .booking-head h3 {
        font-size: 12px;
    }

    .badge {
        font-size: 10px;
        padding: 6px 9px;
    }

    .tabs {
        gap: 6px;
        margin-bottom: 10px;
    }

    .tab {
        font-size: 11px;
        padding: 8px 10px;
    }

    .field {
        padding: 9px 10px 10px;
        border-radius: 12px;
    }

    .label {
        font-size: 9px;
        margin-bottom: 5px;
    }

    .label small {
        font-size: 9px;
    }

    input,
    select {
        font-size: 16px;
    }

    .switchrow {
        padding: 8px 0 0;
        flex-wrap: nowrap;
    }

    .switchrow .left {
        font-size: 11px;
    }

    .switchrow .hint {
        font-size: 10px;
    }

    .toggle {
        width: 46px;
        height: 27px;
    }

    .thumb {
        width: 19px;
        height: 19px;
    }

    .toggle input:checked~.thumb {
        left: 23px;
    }

    .actions {
        gap: 8px;
    }

    .primary,
    .ghost {
        min-height: 46px;
        font-size: 12px;
    }

    .note {
        font-size: 10px;
        line-height: 1.5;
    }

    .dots {
        left: 14px;
        bottom: 14px;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .section-inner {
        padding: 16px 12px;
    }

    .final-cta-inner {
        border-radius: 14px;
        padding: 18px 12px;
    }

    .footer-top {
        padding: 18px 12px;
    }

    .footer-bottom {
        padding: 14px 12px 16px;
    }
}

@media (max-width: 380px) {
    .container,
    .met-custom-site .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-copy h1 {
        font-size: 27px;
    }

    .brand {
        flex: 0 0 56px;
        width: 56px;
        min-width: 56px;
        max-width: 56px;
    }

    .logo {
        height: 26px;
        max-width: 56px;
    }

    .pill,
    .btn {
        padding: 8px 8px;
        font-size: 10px;
    }

    .menu-btn {
        width: 46px;
        height: 46px;
        min-width: 46px;
        flex: 0 0 46px;
    }

    .mobile-menu {
        left: 2px;
        right: 2px;
    }

    .booking-inner {
        padding: 10px;
    }

    .tab {
        font-size: 10px;
        padding: 8px 9px;
    }

    .switchrow .left,
    .switchrow .hint {
        font-size: 10px;
    }
}

.return-form {
    margin-top: 10px;
}

/* SERVICES SECTION */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 500px at 10% 0%, rgba(47, 107, 255, .08), transparent 55%),
        radial-gradient(800px 500px at 100% 100%, rgba(124, 58, 237, .08), transparent 55%);
}

.section-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.services-intro {
    max-width: 900px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    padding: 20px 18px 18px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 107, 255, .16), transparent 68%);
    opacity: .7;
    pointer-events: none;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0), rgba(124, 58, 237, .16));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: 0 22px 42px rgba(0, 0, 0, .34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .05));
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background:
        linear-gradient(135deg, rgba(47, 107, 255, .14), rgba(124, 58, 237, .12));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.service-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.3px;
    color: #fff;
}

.service-card p {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.75;
    font-weight: 650;
    color: rgba(255, 255, 255, .74);
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2px;
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.service-link::after {
    content: "→";
    font-size: 14px;
    line-height: 1;
}

.service-link:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(47, 107, 255, .18), rgba(124, 58, 237, .16));
    border-color: rgba(255, 255, 255, .18);
}

/* AIRPORT TRANSFERS SECTION */
.airport-section {
    position: relative;
    overflow: hidden;
}

.airport-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(800px 500px at 0% 0%, rgba(47, 107, 255, .10), transparent 55%),
        radial-gradient(900px 600px at 100% 100%, rgba(124, 58, 237, .09), transparent 55%);
}

.airport-inner {
    position: relative;
    z-index: 1;
}

.airport-content {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 20px;
    align-items: stretch;
}

.airport-copy {
    padding: 6px 0;
}

.airport-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .74);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    width: fit-content;
}

.airport-title {
    margin-bottom: 8px;
}

.airport-sub {
    max-width: 760px;
    margin-bottom: 12px;
}

.airport-text {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 650;
    max-width: 760px;
}

.airport-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.airport-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 750;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.airport-point-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(47, 107, 255, .16), rgba(124, 58, 237, .14));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .20);
}

.airport-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.airport-primary,
.airport-ghost {
    text-decoration: none;
}

.airport-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .30);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.airport-card-media {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #000;
}

.airport-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.04) contrast(1.05);
    transform: scale(1.02);
}

.airport-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .30)),
        radial-gradient(500px 240px at 20% 0%, rgba(47, 107, 255, .14), transparent 60%);
    pointer-events: none;
}

.airport-card-body {
    padding: 18px;
}

.airport-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(47, 107, 255, .14);
    border: 1px solid rgba(47, 107, 255, .24);
    color: rgba(230, 238, 255, .94);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .2px;
}

.airport-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: -.3px;
    color: #fff;
}

.airport-card p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 650;
}

.airport-mini-list {
    display: grid;
    gap: 10px;
}

.airport-mini-list div {
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .84);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 700;
}

.airport-mini-list strong {
    color: #fff;
    font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .airport-content {
        grid-template-columns: 1fr;
    }

    .airport-card {
        max-width: 780px;
    }
}

@media (max-width: 760px) {
    .airport-points {
        grid-template-columns: 1fr;
    }

    .airport-card-media {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .airport-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .airport-primary,
    .airport-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .airport-card-body {
        padding: 16px;
    }

    .airport-card h3 {
        font-size: 18px;
    }
}

/* CORPORATE CHAUFFEUR SERVICES */
.corporate-section {
    position: relative;
    overflow: hidden;
}

.corporate-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(850px 500px at 12% 0%, rgba(47, 107, 255, .08), transparent 55%),
        radial-gradient(900px 560px at 100% 100%, rgba(124, 58, 237, .08), transparent 55%);
}

.corporate-inner {
    position: relative;
    z-index: 1;
}

.corporate-head {
    margin-bottom: 20px;
}

.corporate-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .74);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    width: fit-content;
}

.corporate-title {
    margin-bottom: 8px;
}

.corporate-sub {
    max-width: 860px;
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
    align-items: start;
}

.corporate-main {
    display: flex;
    flex-direction: column;
}

.corporate-text {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    line-height: 1.85;
    font-weight: 650;
    max-width: 760px;
}

.corporate-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.corporate-feature {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .26);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    overflow: hidden;
}

.corporate-feature::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 107, 255, .14), transparent 68%);
    pointer-events: none;
}

.corporate-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .30);
}

.corporate-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(47, 107, 255, .15), rgba(124, 58, 237, .13));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.corporate-feature h3 {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -.2px;
    color: #fff;
}

.corporate-feature p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 12.5px;
    line-height: 1.7;
    font-weight: 650;
}

.corporate-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.corporate-primary,
.corporate-ghost {
    text-decoration: none;
}

.corporate-side {
    display: grid;
    gap: 14px;
}

.corporate-panel,
.corporate-stats-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .11);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.corporate-panel {
    padding: 20px 18px;
}

.corporate-panel-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(124, 58, 237, .13);
    border: 1px solid rgba(124, 58, 237, .24);
    color: rgba(241, 233, 255, .94);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .2px;
}

.corporate-panel h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: -.3px;
    color: #fff;
}

.corporate-panel p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 650;
}

.corporate-checks {
    display: grid;
    gap: 10px;
}

.corporate-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .84);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 750;
}

.corporate-check span {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(47, 107, 255, .22), rgba(124, 58, 237, .18));
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .20);
}

.corporate-stats-card {
    padding: 14px;
    display: grid;
    gap: 10px;
}

.corporate-stat {
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    gap: 4px;
}

.corporate-stat strong {
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .2px;
}

.corporate-stat span {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .corporate-side {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

@media (max-width: 760px) {
    .corporate-feature-grid {
        grid-template-columns: 1fr;
    }

    .corporate-side {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .corporate-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .corporate-primary,
    .corporate-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .corporate-panel,
    .corporate-stats-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .corporate-panel h3 {
        font-size: 18px;
    }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .section-top {
        margin-bottom: 16px;
    }

    .service-card {
        min-height: unset;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 18px 16px 16px;
    }

    .service-card h3 {
        font-size: 17px;
    }
}

/* FLEET PREVIEW */
.fleet-section {
    position: relative;
    overflow: hidden;
}

.fleet-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 520px at 8% 0%, rgba(47, 107, 255, .08), transparent 55%),
        radial-gradient(850px 520px at 100% 100%, rgba(124, 58, 237, .08), transparent 55%);
}

.fleet-inner {
    position: relative;
    z-index: 1;
}

.fleet-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fleet-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .74);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    width: fit-content;
}

.fleet-title {
    margin-bottom: 8px;
}

.fleet-sub {
    max-width: 820px;
}

.fleet-top-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .20);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.fleet-top-link::after {
    content: "→";
    font-size: 14px;
    line-height: 1;
}

.fleet-top-link:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(47, 107, 255, .18), rgba(124, 58, 237, .16));
    border-color: rgba(255, 255, 255, .18);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fleet-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fleet-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: 0 22px 42px rgba(0, 0, 0, .34);
}

.fleet-media {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #000;
}

.fleet-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    filter: saturate(1.04) contrast(1.05);
}

.fleet-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .34)),
        radial-gradient(500px 240px at 20% 0%, rgba(47, 107, 255, .14), transparent 60%);
    pointer-events: none;
}

.fleet-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(47, 107, 255, .18);
    border: 1px solid rgba(47, 107, 255, .28);
    color: rgba(235, 241, 255, .96);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .2px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
}

.fleet-badge.premium {
    background: rgba(124, 58, 237, .18);
    border-color: rgba(124, 58, 237, .28);
    color: rgba(244, 236, 255, .96);
}

.fleet-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fleet-body h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: -.3px;
    color: #fff;
}

.fleet-body p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 650;
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.fleet-spec {
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    gap: 4px;
}

.fleet-spec strong {
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .2px;
}

.fleet-spec span {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
}

.fleet-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.fleet-tags span {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .82);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .2px;
}

.fleet-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .2px;
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.fleet-link::after {
    content: "→";
    font-size: 14px;
    line-height: 1;
}

.fleet-link:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(47, 107, 255, .18), rgba(124, 58, 237, .16));
    border-color: rgba(255, 255, 255, .18);
}

.fleet-bottom-cta {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.fleet-bottom-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 750;
}

.fleet-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fleet-primary,
.fleet-ghost {
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .fleet-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fleet-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .fleet-card.featured {
        grid-column: span 1;
    }

    .fleet-media {
        height: 220px;
    }

    .fleet-bottom-cta {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .fleet-head {
        align-items: stretch;
    }

    .fleet-top-link {
        width: 100%;
        justify-content: center;
    }

    .fleet-specs {
        grid-template-columns: 1fr;
    }

    .fleet-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fleet-primary,
    .fleet-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .fleet-body {
        padding: 16px;
    }

    .fleet-body h3 {
        font-size: 18px;
    }
}

/* HOW IT WORKS */
.how-section {
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(820px 480px at 10% 0%, rgba(47, 107, 255, .07), transparent 55%),
        radial-gradient(820px 500px at 100% 100%, rgba(124, 58, 237, .07), transparent 55%);
}

.how-inner {
    position: relative;
    z-index: 1;
}

.how-head {
    margin-bottom: 20px;
}

.how-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .74);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    width: fit-content;
}

.how-title {
    margin-bottom: 8px;
}

.how-sub {
    max-width: 760px;
}

.how-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.how-card {
    position: relative;
    padding: 22px 18px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    overflow: hidden;
}

.how-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 107, 255, .12), transparent 68%);
    pointer-events: none;
}

.how-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: 0 22px 42px rgba(0, 0, 0, .34);
}

.how-step-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 1px;
}

.how-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(47, 107, 255, .15), rgba(124, 58, 237, .13));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.how-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.2px;
    color: #fff;
}

.how-card p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 650;
}

.how-bottom {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.how-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.7;
    font-weight: 750;
}

.how-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.how-primary,
.how-ghost {
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .how-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .how-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .how-primary,
    .how-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .how-card {
        padding: 20px 16px 16px;
    }

    .how-card h3 {
        font-size: 17px;
    }
}

/* WHY CHOOSE US */
.why-section {
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(860px 500px at 8% 0%, rgba(47, 107, 255, .08), transparent 55%),
        radial-gradient(860px 520px at 100% 100%, rgba(124, 58, 237, .08), transparent 55%);
}

.why-inner {
    position: relative;
    z-index: 1;
}

.why-head {
    margin-bottom: 20px;
}

.why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .74);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    width: fit-content;
}

.why-title {
    margin-bottom: 8px;
}

.why-sub {
    max-width: 800px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.why-card {
    position: relative;
    padding: 20px 18px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .26);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 107, 255, .13), transparent 68%);
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: 0 20px 38px rgba(0, 0, 0, .32);
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(47, 107, 255, .15), rgba(124, 58, 237, .13));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
}

.why-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.2px;
    color: #fff;
}

.why-card p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 650;
}

.why-bottom {
    margin-top: 18px;
    padding: 20px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.why-bottom-copy {
    max-width: 760px;
}

.why-bottom-copy h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -.2px;
    color: #fff;
}

.why-bottom-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 650;
}

.why-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.why-primary,
.why-ghost {
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .why-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .why-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .why-primary,
    .why-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .why-card {
        padding: 18px 16px 16px;
    }

    .why-card h3,
    .why-bottom-copy h3 {
        font-size: 17px;
    }
}

/* TESTIMONIALS */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(860px 500px at 10% 0%, rgba(47, 107, 255, .07), transparent 55%),
        radial-gradient(860px 520px at 100% 100%, rgba(124, 58, 237, .07), transparent 55%);
}

.testimonials-inner {
    position: relative;
    z-index: 1;
}

.testimonials-head {
    margin-bottom: 20px;
}

.testimonials-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .74);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    width: fit-content;
}

.testimonials-title {
    margin-bottom: 8px;
}

.testimonials-sub {
    max-width: 800px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.testimonial-card {
    position: relative;
    padding: 22px 18px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 107, 255, .12), transparent 68%);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: 0 22px 42px rgba(0, 0, 0, .34);
}

.testimonial-card.featured {
    border-color: rgba(124, 58, 237, .20);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .30);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    color: #D4AF37;
    font-size: 16px;
    line-height: 1;
    text-shadow: 0 0 12px rgba(212, 175, 55, .18);
}

.testimonial-text {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 650;
    flex: 1;
}

.testimonial-meta {
    display: grid;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.testimonial-meta strong {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.1px;
}

.testimonial-meta span {
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 750;
}

.testimonials-bottom {
    margin-top: 18px;
    padding: 20px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.testimonials-bottom-copy {
    max-width: 760px;
}

.testimonials-bottom-copy h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -.2px;
    color: #fff;
}

.testimonials-bottom-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 650;
}

.testimonials-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.testimonials-primary,
.testimonials-ghost {
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .testimonials-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonials-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonials-primary,
    .testimonials-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .testimonial-card {
        padding: 20px 16px 16px;
    }

    .testimonials-bottom-copy h3 {
        font-size: 17px;
    }
}

/* FAQ */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(860px 500px at 10% 0%, rgba(47, 107, 255, .07), transparent 55%),
        radial-gradient(860px 520px at 100% 100%, rgba(124, 58, 237, .07), transparent 55%);
}

.faq-inner {
    position: relative;
    z-index: 1;
}

.faq-head {
    margin-bottom: 20px;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .74);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    width: fit-content;
}

.faq-title {
    margin-bottom: 8px;
}

.faq-sub {
    max-width: 820px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, .16);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
}

.faq-item[open] {
    border-color: rgba(124, 58, 237, .20);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .30);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 18px;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 850;
    letter-spacing: -.15px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-plus {
    position: relative;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .20);
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: rgba(255, 255, 255, .9);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform .2s ease, opacity .2s ease;
}

.faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-plus::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scale(.6);
}

.faq-answer {
    padding: 0 18px 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.faq-answer p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 650;
    max-width: 900px;
}

.faq-bottom {
    margin-top: 18px;
    padding: 20px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.faq-bottom-copy {
    max-width: 760px;
}

.faq-bottom-copy h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -.2px;
    color: #fff;
}

.faq-bottom-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 650;
}

.faq-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-primary,
.faq-ghost {
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .faq-item summary {
        padding: 16px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-primary,
    .faq-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .faq-bottom-copy h3 {
        font-size: 17px;
    }
}

/* FINAL CTA */
.final-cta {
    margin-top: 46px;
    position: relative;
}

.final-cta-inner {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    padding: 30px 26px;
    background:
        radial-gradient(900px 500px at 0% 0%, rgba(47, 107, 255, .16), transparent 55%),
        radial-gradient(900px 520px at 100% 100%, rgba(124, 58, 237, .14), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .34);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.final-cta-inner::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 68%);
    pointer-events: none;
}

.final-cta-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .78);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .20);
    width: fit-content;
}

.final-cta-copy h2 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -.8px;
    font-weight: 950;
    color: #fff;
    text-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}

.final-cta-copy p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, .80);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 650;
}

.final-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.final-cta-primary,
.final-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .2px;
    transition: transform .15s ease, opacity .15s ease, background .15s ease, border-color .15s ease;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .24);
    white-space: nowrap;
}

.final-cta-primary {
    color: #fff;
    border: 1px solid rgba(212, 175, 55, .26);
    background: linear-gradient(90deg, rgba(47, 107, 255, .94), rgba(124, 58, 237, .92));
}

.final-cta-primary:hover {
    transform: translateY(-1px);
    opacity: .98;
}

.final-cta-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

.final-cta-secondary:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .18);
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .final-cta-inner {
        padding: 24px 20px;
    }

    .final-cta-copy h2 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .final-cta-inner {
        padding: 22px 16px;
    }

    .final-cta-copy h2 {
        font-size: 24px;
        line-height: 1.1;
    }

    .final-cta-copy p {
        font-size: 13px;
    }

    .final-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-primary,
    .final-cta-secondary {
        width: 100%;
    }
}

/* FOOTER */
.site-footer {
    margin-top: 46px;
    padding: 0;
    border-radius: 26px;
    overflow: hidden;
    background:
        radial-gradient(900px 500px at 0% 0%, rgba(47, 107, 255, .10), transparent 55%),
        radial-gradient(900px 520px at 100% 100%, rgba(124, 58, 237, .10), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr .8fr .9fr .9fr;
    gap: 24px;
    padding: 26px;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo-wrap {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-logo {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    filter:
        drop-shadow(0 6px 18px rgba(0, 0, 0, .55)) drop-shadow(0 0 10px rgba(255, 215, 0, .18));
}

.footer-brand-text {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 650;
}

.footer-contact {
    display: grid;
    gap: 8px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 750;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-col h3 {
    margin: 4px 0 12px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.2px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.footer-col li {
    margin: 0;
}

.footer-col a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
    transition: color .15s ease, transform .15s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 16px 26px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .60);
    font-size: 12px;
    font-weight: 700;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.footer-legal a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .site-footer {
        border-radius: 22px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 22px 16px;
    }

    .footer-bottom {
        padding: 14px 16px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo {
        height: 46px;
    }
}

.return-form {
    margin-top: 10px;
}