/* ResvBAR /landing — isolated redesign (does not affect home-v2) */
:root {
    --lp-deep: #071525;
    --lp-navy: #0b2744;
    --lp-blue: #0089bf;
    --lp-cyan: #00a8e8;
    --lp-gold: #fea31a;
    --lp-ink: #122033;
    --lp-muted: #5d6f82;
    --lp-line: rgba(11, 39, 68, 0.12);
    --lp-soft: #f2f6fa;
    --lp-white: #ffffff;
    --lp-radius: 20px;
    --lp-radius-sm: 14px;
    --lp-header-h: 72px;
    --lp-sticky-h: 72px;
    --lp-max: 1120px;
    --lp-font: "Tajawal", system-ui, sans-serif;
    --lp-shadow: 0 24px 60px rgba(7, 21, 37, 0.14);
    --lp-shadow-sm: 0 10px 28px rgba(7, 21, 37, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-padding-top: calc(var(--lp-header-h) + 12px);
    overflow-x: clip;
}

.lp-body {
    margin: 0;
    font-family: var(--lp-font);
    color: var(--lp-ink);
    background: var(--lp-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

.lp-skip {
    position: absolute;
    inset-inline-start: 12px;
    top: -48px;
    z-index: 10000;
    background: var(--lp-navy);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}
.lp-skip:focus { top: 12px; }

.lp-body a:focus-visible,
.lp-body button:focus-visible,
.lp-body input:focus-visible,
.lp-body select:focus-visible {
    outline: 2px solid var(--lp-cyan);
    outline-offset: 3px;
}

[id] { scroll-margin-top: calc(var(--lp-header-h) + 14px); }

.lp-wrap {
    width: min(100% - 40px, var(--lp-max));
    margin-inline: auto;
}

/* Header */
.lp-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 1200;
    min-height: var(--lp-header-h);
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.lp-header.is-solid {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(7, 21, 37, 0.08);
}
.lp-header.is-over-hero:not(.is-solid) {
    background: rgba(7, 21, 37, 0.62);
    backdrop-filter: blur(12px);
    box-shadow: none;
}
.lp-header__inner {
    width: min(100% - 32px, 1180px);
    margin-inline: auto;
    min-height: var(--lp-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.lp-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}
.lp-header__brand img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 132px;
    object-fit: contain;
    filter: none;
}
.lp-header__brand-text {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--lp-navy);
    white-space: nowrap;
}
.lp-header.is-over-hero:not(.is-solid) .lp-header__brand-text {
    color: #fff;
}
.lp-header.is-over-hero:not(.is-solid) .lp-header__brand img {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buttons / links */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: inherit;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn--primary {
    background: linear-gradient(135deg, var(--lp-gold) 0%, #ffb84a 100%);
    color: #1a1205;
    box-shadow: 0 12px 28px rgba(254, 163, 26, 0.35);
}
.lp-btn--primary:hover {
    box-shadow: 0 16px 34px rgba(254, 163, 26, 0.42);
    color: #1a1205;
}
.lp-btn--navy {
    background: var(--lp-navy);
    color: #fff;
}
.lp-btn--navy:hover { background: #14375c; color: #fff; }
.lp-btn--ghost {
    background: transparent;
    color: var(--lp-navy);
    border-color: rgba(11, 39, 68, 0.18);
}
.lp-btn--ghost:hover { border-color: var(--lp-blue); color: var(--lp-blue); }
.lp-header.is-over-hero:not(.is-solid) .lp-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}
.lp-header.is-over-hero:not(.is-solid) .lp-btn--primary {
    background: #fff;
    color: var(--lp-navy);
    box-shadow: none;
}
.lp-btn--light {
    background: #fff;
    color: var(--lp-navy);
}
.lp-btn--light:hover { background: #f3f8fc; color: var(--lp-navy); }
.lp-btn--block { width: 100%; }

.lp-link {
    color: var(--lp-blue);
    font-weight: 700;
    text-decoration: none;
}
.lp-link:hover { color: var(--lp-navy); text-decoration: underline; }
.lp-link--on-dark { color: #9ad8f0; }
.lp-link--on-dark:hover { color: #fff; }

/* Section chrome */
.lp-eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    color: var(--lp-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}
.lp-title {
    margin: 0;
    color: var(--lp-navy);
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    line-height: 1.35;
    font-weight: 800;
    text-wrap: balance;
}
.lp-lead {
    margin: 12px 0 0;
    max-width: 38em;
    color: var(--lp-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.lp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-reveal.is-in {
    opacity: 1;
    transform: none;
}
.lp-reveal-d1 { transition-delay: 0.06s; }
.lp-reveal-d2 { transition-delay: 0.12s; }
.lp-reveal-d3 { transition-delay: 0.18s; }

/* Hero */
.lp-hero {
    position: relative;
    min-height: 100svh;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}
.lp-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.lp-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    transform: scale(1.04);
}
.lp-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 21, 37, 0.72) 0%, rgba(7, 21, 37, 0.48) 42%, rgba(7, 21, 37, 0.88) 100%),
        radial-gradient(70% 55% at 70% 20%, rgba(0, 168, 232, 0.16), transparent 55%);
}
.lp-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 40px, 920px);
    margin-inline: auto;
    padding: calc(var(--lp-header-h) + 28px) 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100svh;
    justify-content: flex-end;
}
.lp-hero__brand {
    margin: 0 0 14px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.lp-hero__title {
    margin: 0;
    font-size: clamp(1.9rem, 5.2vw, 3.2rem);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-wrap: balance;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.lp-hero__title span {
    display: block;
    color: var(--lp-gold);
}
.lp-hero__desc {
    margin: 14px 0 0;
    max-width: 34em;
    font-size: clamp(0.98rem, 2vw, 1.12rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}
.lp-hero__panel {
    width: min(100%, 860px);
    margin-top: 22px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--lp-shadow);
    color: var(--lp-ink);
    text-align: start;
}
.lp-intent__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(96px, 0.7fr) minmax(96px, 0.7fr) auto;
    gap: 12px;
    align-items: end;
}
.lp-intent__submit {
    grid-column: auto;
}
.lp-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lp-navy);
}
.lp-field input,
.lp-field select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(11, 39, 68, 0.14);
    border-radius: 14px;
    background: #fff;
    color: var(--lp-ink);
    font-family: inherit;
    font-size: 0.95rem;
}
.lp-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230b2744' d='M1.1 1.3 6 6.2l4.9-4.9 1.1 1.1L6 8.4 0 2.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-inline-end: 14px;
    padding-inline-start: 36px;
}
.lp-field input:focus,
.lp-field select:focus {
    border-color: var(--lp-blue);
    box-shadow: 0 0 0 3px rgba(0, 137, 191, 0.15);
    outline: none;
}
.lp-intent__submit .lp-btn {
    width: auto;
    min-width: 168px;
    min-height: 48px;
    white-space: nowrap;
}
.lp-field-error {
    margin: 10px 0 0;
    color: #b42318;
    font-size: 0.88rem;
    font-weight: 700;
}
.lp-hero__provider {
    text-align: center;
}
.lp-hero__provider p {
    margin: 0 0 14px;
    color: var(--lp-muted);
}
.lp-hero__meta {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.lp-hero__meta li {
    margin: 0;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.84rem;
    font-weight: 700;
}
.lp-hero__how {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.lp-hero__how:hover { color: #fff; border-bottom-color: #fff; }

/* Why */
.lp-why {
    padding: 88px 0;
    background:
        radial-gradient(60% 50% at 100% 0%, rgba(0, 168, 232, 0.08), transparent 55%),
        var(--lp-soft);
}
.lp-why__head {
    margin-bottom: 28px;
    max-width: 40em;
}
.lp-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.lp-why__card {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--lp-radius);
    background: #fff;
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow-sm);
    overflow: hidden;
}
.lp-why__card--solution {
    background: linear-gradient(145deg, #0b2744 0%, #0089bf 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 22px 50px rgba(11, 39, 68, 0.28);
}
.lp-why__tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 39, 68, 0.06);
    color: var(--lp-navy);
    font-size: 0.75rem;
    font-weight: 800;
}
.lp-why__card--solution .lp-why__tag {
    background: rgba(254, 163, 26, 0.2);
    color: #ffe2a8;
}
.lp-why__card h3 {
    margin: 0 0 12px;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.4;
    color: var(--lp-navy);
    font-weight: 800;
}
.lp-why__card--solution h3 { color: #fff; }
.lp-why__card p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 1rem;
    line-height: 1.75;
}
.lp-why__card--solution p { color: rgba(255, 255, 255, 0.92); }
.lp-why__bullets {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.lp-why__bullets li {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.86rem;
    font-weight: 700;
}

/* How */
.lp-how {
    padding: 88px 0;
    background: #fff;
}
.lp-how__head {
    margin-bottom: 32px;
}
.lp-how__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    counter-reset: lp-step;
}
.lp-how__step {
    position: relative;
    padding: 26px 22px;
    border-radius: var(--lp-radius);
    background: var(--lp-soft);
    border: 1px solid var(--lp-line);
    counter-increment: lp-step;
}
.lp-how__step::before {
    content: counter(lp-step, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--lp-navy), var(--lp-blue));
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
}
.lp-how__step h3 {
    margin: 0 0 8px;
    color: var(--lp-navy);
    font-size: 1.12rem;
}
.lp-how__step p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* FAQ */
.lp-faq {
    padding: 88px 0;
    background: var(--lp-soft);
}
.lp-faq__layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: start;
}
.lp-faq details {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-sm);
    padding: 16px 18px;
    margin-bottom: 10px;
    box-shadow: var(--lp-shadow-sm);
}
.lp-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--lp-navy);
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: "+";
    color: var(--lp-blue);
    font-size: 1.25rem;
    font-weight: 800;
    flex: 0 0 auto;
}
.lp-faq details[open] summary::after { content: "−"; }
.lp-faq details p {
    margin: 12px 0 2px;
    color: var(--lp-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.lp-faq__more { margin-top: 16px; }

/* Providers */
.lp-providers {
    padding: 88px 0;
    background:
        radial-gradient(70% 60% at 10% 0%, rgba(0, 168, 232, 0.2), transparent 50%),
        linear-gradient(160deg, #0b2744 0%, #071525 100%);
    color: #fff;
}
.lp-providers .lp-eyebrow { color: #9ad8f0; }
.lp-providers .lp-title,
.lp-providers .lp-lead { color: #fff; }
.lp-providers .lp-lead { opacity: 0.88; }
.lp-providers__head {
    max-width: 40em;
    margin-bottom: 8px;
}
.lp-providers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0 28px;
}
.lp-providers__card {
    padding: 24px 20px;
    border-radius: var(--lp-radius);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.lp-providers__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 163, 26, 0.16);
    color: var(--lp-gold);
    font-size: 1.15rem;
}
.lp-providers__card h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}
.lp-providers__card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    line-height: 1.65;
}
.lp-providers__cta {
    display: flex;
    justify-content: flex-start;
}

/* Final CTA */
.lp-close {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    background:
        radial-gradient(50% 60% at 50% 0%, rgba(0, 168, 232, 0.18), transparent 60%),
        var(--lp-soft);
    text-align: center;
}
.lp-close__panel {
    width: min(100%, 720px);
    margin-inline: auto;
    padding: 42px 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--lp-line);
    box-shadow: var(--lp-shadow);
}
.lp-close__proof {
    margin: 12px 0 0;
    color: var(--lp-muted);
    font-weight: 700;
}
.lp-close__actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
    align-items: center;
}

/* Sticky mobile CTA */
.lp-sticky {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 1100;
    display: none;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--lp-line);
    box-shadow: 0 -10px 30px rgba(7, 21, 37, 0.08);
}
.lp-sticky[hidden] { display: none !important; }
.lp-sticky .lp-btn { width: 100%; }

@media (max-width: 900px) {
    .lp-why__grid,
    .lp-how__steps,
    .lp-providers__grid,
    .lp-faq__layout {
        grid-template-columns: 1fr;
    }
    .lp-intent__grid {
        grid-template-columns: 1fr 1fr;
    }
    .lp-field--destination,
    .lp-intent__submit {
        grid-column: 1 / -1;
    }
    .lp-intent__submit .lp-btn {
        width: 100%;
    }
    .lp-header__actions .lp-btn--ghost { display: none; }
}

@media (max-width: 640px) {
    .lp-wrap { width: min(100% - 28px, var(--lp-max)); }
    .lp-header__inner { width: min(100% - 24px, 1180px); }
    .lp-header__brand-text { display: none; }
    .lp-hero__inner {
        width: min(100% - 24px, 920px);
        padding: calc(var(--lp-header-h) + 20px) 0 calc(28px + var(--lp-sticky-h));
        justify-content: flex-end;
        min-height: 100svh;
    }
    .lp-hero__title {
        font-size: clamp(1.7rem, 8vw, 2.15rem);
    }
    .lp-hero__desc {
        font-size: 0.98rem;
        line-height: 1.7;
    }
    .lp-hero__panel { padding: 14px; border-radius: 18px; }
    .lp-intent__grid { grid-template-columns: 1fr; }
    .lp-field--destination,
    .lp-intent__submit {
        grid-column: 1 / -1;
    }
    .lp-why, .lp-how, .lp-faq, .lp-providers, .lp-close { padding: 64px 0; }
    .lp-close__panel { padding: 32px 18px; }
    .lp-sticky { display: block; }
    .lp-body { padding-bottom: calc(var(--lp-sticky-h) + 8px); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .lp-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
