/* ═══════════════════════════════════════════════════════════════
   NEBO RIDES — HOMEPAGE (Epic Redesign)
   Uses --nr- design tokens from nr-header-footer.css
   Prefix: hp-  (homepage-scoped)
   Typography: Playfair Display (serif display) + Open Sans (body)
   ═══════════════════════════════════════════════════════════════ */


/* ─── 0. PAGE WRAPPER & TOKENS ─── */

.hp {
    --hp-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --hp-max: 1320px;

    width: 100%;
    font-family: var(--nr-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--nr-charcoal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.hp img { max-width: 100%; height: auto; display: block; }
.hp a { text-decoration: none; color: inherit; }
.hp a.nr-hero-cta__btn--secondary { color: var(--nr-white); }
.hp a.nr-hero-cta__phone { color: var(--nr-white); }
.hp button { border: none; background: none; cursor: pointer; font-family: inherit; }

.hp-wrap {
    max-width: var(--hp-max);
    margin: 0 auto;
    padding: 0 32px;
}


/* ─── Eyebrow ─── */

.hp-eyebrow {
    font-family: var(--nr-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* ─── Section Headers ─── */

.hp-section-hd {
    text-align: center;
    margin-bottom: 80px;
}

.hp-section-hd--left { text-align: left; }

.hp-section-hd .hp-eyebrow {
    color: var(--nr-sand);
    margin-bottom: 20px;
    display: block;
}

.hp-section-title {
    font-family: var(--hp-display);
    font-weight: 500;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.hp-section-desc {
    font-size: 16px;
    color: var(--nr-steel);
    max-width: 520px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.hp-section-hd--left .hp-section-desc { margin-left: 0; }


/* ─── Buttons ─── */

.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--nr-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 9999px;
    transition: all 0.4s var(--nr-ease-smooth);
    white-space: nowrap;
    cursor: pointer;
}
.hp-btn:focus-visible {
    outline: 2px solid var(--nr-sand);
    outline-offset: 3px;
}

.hp a.hp-btn--primary,
.hp-btn--primary {
    background: var(--nr-white);
    color: var(--nr-charcoal);
}
.hp a.hp-btn--primary:hover,
.hp-btn--primary:hover {
    background: var(--nr-sand);
    color: var(--nr-charcoal);
}

.hp a.hp-btn--ghost,
.hp-btn--ghost {
    background: transparent;
    color: var(--nr-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hp a.hp-btn--ghost:hover,
.hp-btn--ghost:hover {
    background: var(--nr-white);
    color: var(--nr-charcoal);
    border-color: var(--nr-white);
}

.hp a.hp-btn--outline,
.hp-btn--outline {
    background: transparent;
    color: var(--nr-charcoal);
    border: 1px solid var(--nr-ash);
}
.hp a.hp-btn--outline:hover,
.hp-btn--outline:hover {
    background: var(--nr-charcoal);
    color: var(--nr-white);
    border-color: var(--nr-charcoal);
}


/* ─── Scroll Reveal ─── */

.hp-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s var(--nr-ease), transform 1s var(--nr-ease);
}
.hp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.hp-reveal--d1 { transition-delay: 0.08s; }
.hp-reveal--d2 { transition-delay: 0.16s; }
.hp-reveal--d3 { transition-delay: 0.24s; }
.hp-reveal--d4 { transition-delay: 0.32s; }
.hp-reveal--d5 { transition-delay: 0.40s; }
.hp-reveal--d6 { transition-delay: 0.48s; }
.hp-reveal--d7 { transition-delay: 0.56s; }
.hp-reveal--d8 { transition-delay: 0.64s; }


/* ═══════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════ */

.hp-hero {
    position: relative;
    min-height: calc(100vh - var(--nr-header-total, 108px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--nr-ink);
    overflow: hidden;
    padding-bottom: 140px;
}

.hp-hero__media {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    will-change: transform;
}
.hp-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hp-hero__vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(15, 18, 24, 0.4) 100%),
        linear-gradient(180deg, rgba(15, 18, 24, 0.15) 0%, rgba(15, 18, 24, 0.5) 50%, rgba(15, 18, 24, 0.92) 100%);
}

.hp-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 32px;
    max-width: 900px;
}

.hp-hero__eyebrow {
    color: var(--nr-sand);
    margin-bottom: 32px;
    opacity: 0;
    animation: hpFadeUp 1s 0.4s var(--nr-ease) forwards;
}

.hp-hero__title {
    font-family: var(--hp-display);
    font-weight: 500;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--nr-white);
    margin-bottom: 28px;
    opacity: 0;
    animation: hpFadeUp 1s 0.6s var(--nr-ease) forwards;
}

.hp-hero__title em {
    font-style: italic;
    font-weight: 400;
}

.hp-hero__sub {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto 44px;
    opacity: 0;
    animation: hpFadeUp 1s 0.8s var(--nr-ease) forwards;
}

.hp-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: hpFadeUp 1s 1s var(--nr-ease) forwards;
}

/* Stats bar */
.hp-hero__stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(15, 18, 24, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hp-hero__stats-track {
    max-width: var(--hp-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hp-hero__stat {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    animation: hpFadeUp 0.8s var(--nr-ease) forwards;
}
.hp-hero__stat:last-child { border-right: none; }
.hp-hero__stat:nth-child(1) { animation-delay: 1.2s; }
.hp-hero__stat:nth-child(2) { animation-delay: 1.35s; }
.hp-hero__stat:nth-child(3) { animation-delay: 1.5s; }
.hp-hero__stat:nth-child(4) { animation-delay: 1.65s; }

.hp-hero__stat-num {
    display: block;
    font-family: var(--hp-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--nr-white);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hp-hero__stat-lbl {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 6px;
}

/* Scroll indicator */
.hp-hero__scroll {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: hpFadeIn 1s 1.8s var(--nr-ease) forwards, hpBounce 2.5s 2.5s ease-in-out infinite;
}
.hp-hero__scroll.is-hidden { opacity: 0; pointer-events: none; }
.hp-hero__scroll svg {
    width: 24px;
    height: 24px;
    stroke: var(--nr-white);
    stroke-width: 1.5;
    fill: none;
}

@keyframes hpFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes hpFadeIn {
    from { opacity: 0; }
    to { opacity: 0.35; }
}
@keyframes hpBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}


/* ═══════════════════════════════════════════
   2. AEO INTRODUCTION
   ═══════════════════════════════════════════ */

.hp-intro {
    background: var(--nr-parchment);
    padding: 100px 0;
    border-bottom: 1px solid rgba(30, 36, 48, 0.06);
}

.hp-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.hp-intro__lead {
    font-family: var(--hp-display);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 400;
    line-height: 1.55;
    color: var(--nr-charcoal);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.hp-intro__body {
    font-size: 15px;
    font-weight: 400;
    color: var(--nr-steel);
    line-height: 1.8;
}

.hp-intro__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.hp-intro__metric {
    padding: 36px 32px;
    border-bottom: 1px solid rgba(30, 36, 48, 0.08);
    border-right: 1px solid rgba(30, 36, 48, 0.08);
}
.hp-intro__metric:nth-child(2n) { border-right: none; }
.hp-intro__metric:nth-child(n+3) { border-bottom: none; }

.hp-intro__metric-num {
    display: block;
    font-family: var(--hp-display);
    font-size: 44px;
    font-weight: 500;
    color: var(--nr-charcoal);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hp-intro__metric-lbl {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nr-steel);
    margin-top: 8px;
}


/* ═══════════════════════════════════════════
   3. SERVICES (Bento Grid)
   ═══════════════════════════════════════════ */

.hp-services {
    padding: 160px 0;
}

.hp-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hp-services__card {
    background: var(--nr-parchment);
    padding: 48px 32px 40px;
    display: flex;
    flex-direction: column;
    transition: background 0.5s var(--nr-ease-smooth);
    position: relative;
    cursor: pointer;
    border-radius: 4px;
}
.hp-services__card:hover { background: var(--nr-charcoal); }
.hp-services__card:focus-visible {
    outline: 2px solid var(--nr-sand);
    outline-offset: -2px;
}

/* Featured cards span full width in top row */
.hp-services__card--featured {
    grid-column: span 1;
}

.hp-services__num {
    display: block;
    font-family: var(--hp-display);
    font-size: 56px;
    font-weight: 400;
    color: var(--nr-bone);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    transition: color 0.5s;
}
.hp-services__card:hover .hp-services__num { color: rgba(255, 255, 255, 0.15); }

.hp-services__body { flex: 1; }

.hp-services__card h3 {
    font-family: var(--hp-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.25;
    transition: color 0.5s;
}
.hp-services__card:hover h3 { color: var(--nr-white); }

.hp-services__card p {
    font-size: 14px;
    color: var(--nr-steel);
    line-height: 1.7;
    margin-bottom: 24px;
    transition: color 0.5s;
}
.hp-services__card:hover p { color: rgba(255, 255, 255, 0.5); }

.hp-services__arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--nr-ash);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--nr-ease-smooth);
    margin-top: auto;
}
.hp-services__arrow svg { width: 14px; height: 14px; color: var(--nr-steel); transition: color 0.4s; }
.hp-services__card:hover .hp-services__arrow {
    background: var(--nr-white);
    border-color: var(--nr-white);
}
.hp-services__card:hover .hp-services__arrow svg { color: var(--nr-charcoal); }


/* ═══════════════════════════════════════════
   4. SOCIAL PROOF (Marquee)
   ═══════════════════════════════════════════ */

.hp-proof {
    background: var(--nr-charcoal);
    padding: 28px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hp-proof__marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hp-proof__track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: hpMarquee 30s linear infinite;
    width: max-content;
}

.hp-proof__track > span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    padding: 0 8px;
}

.hp-proof__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    margin: 0 16px;
}

@keyframes hpMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════
   5. TRUST
   ═══════════════════════════════════════════ */

.hp-trust {
    background: var(--nr-charcoal);
    padding: 96px 0;
}

.hp-trust__inner { text-align: center; }

.hp-trust__title {
    font-family: var(--hp-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    color: var(--nr-white);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.hp-trust__sub {
    font-size: 15px;
    font-weight: 400;
    color: var(--nr-fog);
    margin-bottom: 56px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.hp-trust__badges {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.hp-trust__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: default;
}

.hp-trust__badge-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.5s, background 0.5s;
}
.hp-trust__badge:hover .hp-trust__badge-ring {
    border-color: var(--nr-sand);
    background: rgba(183, 175, 163, 0.08);
}
.hp-trust__badge-ring svg { width: 24px; height: 24px; color: var(--nr-sand); }

.hp-trust__badge > span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    line-height: 1.6;
}


/* ═══════════════════════════════════════════
   6. CITIES (Asymmetric Grid)
   ═══════════════════════════════════════════ */

.hp-cities {
    padding: 160px 0;
}

.hp-cities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 4px;
}

/* First card (NYC) spans 2 columns and 2 rows */
.hp-cities__card--hero {
    grid-column: span 2;
    grid-row: span 2;
}

.hp-cities__card {
    position: relative;
    overflow: hidden;
    display: block;
}
.hp-cities__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--nr-ease);
}
.hp-cities__card:hover img { transform: scale(1.05); }
.hp-cities__card:focus-visible {
    outline: 2px solid var(--nr-sand);
    outline-offset: -2px;
}

.hp-cities__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(15, 18, 24, 0.75) 100%);
    transition: opacity 0.5s;
}

.hp-cities__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
}

.hp-cities__name {
    display: block;
    font-family: var(--hp-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--nr-white);
    letter-spacing: -0.01em;
}
.hp-cities__card--hero .hp-cities__name {
    font-size: 40px;
}

.hp-cities__code {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--nr-sand);
    margin-top: 4px;
}

.hp-cities__cta { text-align: center; margin-top: 56px; }


/* ═══════════════════════════════════════════
   7. FLEET
   ═══════════════════════════════════════════ */

.hp-fleet {
    padding: 160px 0;
    background: var(--nr-parchment);
}

.hp-fleet__row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.hp-fleet__row:last-of-type { margin-bottom: 0; }
.hp-fleet__row--flip { direction: rtl; }
.hp-fleet__row--flip > * { direction: ltr; }

.hp-fleet__img { overflow: hidden; }
.hp-fleet__img img {
    width: 100%;
    aspect-ratio: 8/5;
    object-fit: cover;
    transition: transform 0.7s var(--nr-ease);
}
.hp-fleet__img:hover img { transform: scale(1.03); }

.hp-fleet__body .hp-eyebrow {
    color: var(--nr-sand);
    margin-bottom: 12px;
    display: block;
}

.hp-fleet__body h3 {
    font-family: var(--hp-display);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.hp-fleet__body h3 a {
    color: inherit;
    text-decoration: none;
}
.hp-fleet__body h3 a:hover {
    color: var(--hp-sand, #B7AFA3);
}

.hp-fleet__body > p {
    font-size: 15px;
    font-weight: 400;
    color: var(--nr-steel);
    line-height: 1.8;
    margin-bottom: 28px;
}

.hp-fleet__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hp-fleet__pills span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nr-steel);
    padding: 10px 18px;
    border: 1px solid rgba(30, 36, 48, 0.08);
    border-radius: 9999px;
    background: var(--nr-white);
    transition: border-color 0.3s;
}
.hp-fleet__pills span:hover { border-color: var(--nr-sand); }


/* ═══════════════════════════════════════════
   8. DIFFERENCE (Nebo Standard) — Card Layout
   ═══════════════════════════════════════════ */

.hp-diff {
    padding: 160px 0;
    background: var(--nr-ink);
}

.hp-diff .hp-section-hd .hp-eyebrow { color: var(--nr-sand); }
.hp-diff .hp-section-title { color: var(--nr-white); }

.hp-diff__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hp-diff__card {
    background: rgba(255, 255, 255, 0.04);
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    transition: background 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}
.hp-diff__card:hover { background: rgba(255, 255, 255, 0.08); }

.hp-diff__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: border-color 0.5s;
}
.hp-diff__card:hover .hp-diff__icon { border-color: var(--nr-sand); }
.hp-diff__icon svg { width: 20px; height: 20px; color: var(--nr-sand); }

.hp-diff__card .hp-eyebrow {
    color: var(--nr-sand);
    margin-bottom: 14px;
    display: block;
}

.hp-diff__card h3 {
    font-family: var(--hp-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--nr-white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.hp-diff__card p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    flex: 1;
}

.hp a.hp-diff__link,
.hp-diff__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nr-sand);
    transition: gap 0.3s var(--nr-ease);
}
.hp a.hp-diff__link:hover,
.hp-diff__link:hover { gap: 12px; }
.hp-diff__link:focus-visible {
    outline: 2px solid var(--nr-sand);
    outline-offset: 3px;
}


/* ═══════════════════════════════════════════
   9. CORPORATE
   ═══════════════════════════════════════════ */

.hp-corp {
    padding: 120px 0;
    background: var(--nr-charcoal);
}

.hp-corp__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hp-corp__left .hp-eyebrow { color: var(--nr-sand); margin-bottom: 20px; display: block; }

.hp-corp__title {
    font-family: var(--hp-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500;
    color: var(--nr-white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.015em;
}

.hp-corp__desc {
    font-size: 15px;
    font-weight: 400;
    color: var(--nr-fog);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hp-corp__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hp-corp__checks { display: flex; flex-direction: column; }

.hp-corp__check {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 400;
    color: var(--nr-fog);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hp-corp__check:first-child { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.hp-corp__check > span:first-child {
    color: var(--nr-sand);
    font-size: 16px;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════
   10. FAQ (Split Layout)
   ═══════════════════════════════════════════ */

.hp-faq {
    padding: 160px 0;
    background: var(--nr-parchment);
}

.hp-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.hp-faq__hd {
    position: sticky;
    top: calc(var(--nr-header-total, 108px) + 40px);
}

.hp-faq__hd .hp-eyebrow {
    color: var(--nr-sand);
    margin-bottom: 20px;
    display: block;
}

.hp-faq__hd .hp-section-title {
    text-align: left;
}

.hp-faq__list {
    max-width: 100%;
}

.hp-faq__item {
    border-bottom: 1px solid rgba(30, 36, 48, 0.1);
}
.hp-faq__item:first-child { border-top: 1px solid rgba(30, 36, 48, 0.1); }

.hp-faq__q {
    width: 100%;
    text-align: left;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-size: 17px;
    font-weight: 500;
    color: var(--nr-charcoal);
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1.4;
}
.hp-faq__q:hover { color: var(--nr-sand); }
.hp-faq__q:focus-visible {
    outline: 2px solid var(--nr-sand);
    outline-offset: -2px;
}

.hp-faq__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--nr-ash);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s var(--nr-ease), background 0.3s, border-color 0.3s;
}
.hp-faq__icon svg { width: 12px; height: 12px; color: var(--nr-steel); }

.hp-faq__item.is-open .hp-faq__icon {
    transform: rotate(45deg);
    background: var(--nr-charcoal);
    border-color: var(--nr-charcoal);
}
.hp-faq__item.is-open .hp-faq__icon svg { color: var(--nr-white); }

.hp-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--nr-ease-smooth);
}

.hp-faq__a p {
    font-size: 15px;
    font-weight: 400;
    color: var(--nr-steel);
    line-height: 1.8;
    padding-bottom: 28px;
    max-width: 600px;
}
.hp .hp-faq__a a {
    color: var(--nr-sand);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hp .hp-faq__a a:hover { color: var(--nr-charcoal); }


/* ═══════════════════════════════════════════
   11. BOOKING
   ═══════════════════════════════════════════ */

.hp-book {
    padding: 120px 0;
    background: var(--nr-ink);
}

.hp-book__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hp-book__left .hp-eyebrow { color: var(--nr-sand); margin-bottom: 20px; display: block; }

.hp-book__title {
    font-family: var(--hp-display);
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 500;
    color: var(--nr-white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.hp-book__sub {
    font-size: 15px;
    font-weight: 400;
    color: var(--nr-fog);
    margin-bottom: 36px;
    line-height: 1.75;
}

.hp a.hp-book__phone,
.hp-book__phone {
    font-family: var(--hp-display);
    font-size: 36px;
    font-weight: 500;
    color: var(--nr-sand);
    letter-spacing: 0.02em;
    display: block;
    transition: color 0.4s;
    margin-bottom: 8px;
}
.hp a.hp-book__phone:hover,
.hp-book__phone:hover { color: var(--nr-white); }
.hp-book__phone:focus-visible {
    outline: 2px solid var(--nr-sand);
    outline-offset: 3px;
}

.hp-book__phone-lbl {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.hp-book__widget {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 56px 44px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.5s;
}
.hp-book__widget:hover { border-color: rgba(255, 255, 255, 0.15); }

.hp-book__widget h3 {
    font-family: var(--hp-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--nr-white);
    margin-bottom: 10px;
}

.hp-book__widget p {
    font-size: 14px;
    font-weight: 400;
    color: var(--nr-fog);
    margin-bottom: 32px;
}

.hp-book__widget .hp-btn { width: 100%; justify-content: center; }


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hp-services__grid { grid-template-columns: repeat(2, 1fr); }
    .hp-services__card--featured { grid-column: span 1; }

    .hp-cities__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
    .hp-cities__card--hero {
        grid-column: span 2;
        grid-row: span 1;
    }

    .hp-diff__grid { grid-template-columns: 1fr 1fr; }

    .hp-fleet__row,
    .hp-diff__row { gap: 48px; }

    .hp-corp__grid { grid-template-columns: 1fr; }

    .hp-faq__grid { grid-template-columns: 1fr; gap: 48px; }
    .hp-faq__hd { position: static; }
}

@media (max-width: 768px) {
    .hp-hero { padding-bottom: 260px; }
    .hp-hero__title { font-size: clamp(36px, 8vw, 52px); }
    .hp-hero__stats-track { grid-template-columns: repeat(2, 1fr); }
    .hp-hero__stat:nth-child(2) { border-right: none; }
    .hp-hero__scroll { bottom: 80px; }

    .hp-intro { padding: 72px 0; }
    .hp-intro__grid { grid-template-columns: 1fr; gap: 48px; }
    .hp-intro__lead { font-size: 20px; }

    .hp-services { padding: 96px 0; }
    .hp-services__grid { grid-template-columns: 1fr; }

    .hp-proof__track > span { font-size: 12px; }

    .hp-trust { padding: 72px 0; }
    .hp-trust__badges { gap: 32px; }

    .hp-cities { padding: 96px 0; }
    .hp-cities__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .hp-cities__card--hero {
        grid-column: span 1;
        grid-row: span 1;
    }
    .hp-cities__card--hero .hp-cities__name { font-size: 32px; }

    .hp-fleet { padding: 96px 0; }
    .hp-fleet__row,
    .hp-fleet__row--flip {
        grid-template-columns: 1fr;
        gap: 28px;
        direction: ltr;
    }
    .hp-fleet__row { margin-bottom: 64px; }

    .hp-diff { padding: 96px 0; }
    .hp-diff__grid { grid-template-columns: 1fr; }
    .hp-diff__card { padding: 40px 28px; }

    .hp-corp { padding: 80px 0; }
    .hp-corp__grid { grid-template-columns: 1fr; gap: 40px; }

    .hp-faq { padding: 96px 0; }

    .hp-book { padding: 80px 0; }
    .hp-book__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hp-section-hd { margin-bottom: 56px; }
}

@media (max-width: 480px) {
    .hp-wrap { padding: 0 20px; }
    .hp-hero__content { padding: 0 20px; }

    .hp-intro__metrics { grid-template-columns: 1fr; }
    .hp-intro__metric { border-right: none; }
    .hp-intro__metric:nth-child(n+3) { border-bottom: 1px solid rgba(30, 36, 48, 0.08); }
    .hp-intro__metric:last-child { border-bottom: none; }

    .hp-services__card { padding: 36px 24px 32px; }
    .hp-services__num { font-size: 44px; }

    .hp-cities__info { padding: 24px; }

    .hp-diff__card { padding: 32px 24px; }

    .hp-btn { padding: 14px 28px; font-size: 11px; }
}


/* ═══════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    .hp *, .hp *::before, .hp *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hp-reveal { opacity: 1; transform: none; }
    .hp-hero__eyebrow,
    .hp-hero__title,
    .hp-hero__sub,
    .hp-hero__actions,
    .hp-hero__stat,
    .hp-hero__scroll {
        opacity: 1 !important;
        animation: none !important;
    }
    .hp-proof__track { animation: none !important; }
}
