:root {
    --j9-navy: #061a35;
    --j9-navy-deep: #031024;
    --j9-blue: #0d2d55;
    --j9-gold: #f4bd08;
    --j9-gold-soft: #d3a62f;
    --j9-white: #ffffff;
    --j9-ink: #10223d;
    --j9-sand: #f3f1ec;
    --j9-mist: #eaf0f5;
    --j9-line: #c6d1dc;
}

/* The Ripple shell stays untouched. These sibling rules only hide its visible
   public chrome while the J9 Fly plugin is active. */
body:has(.j9-header) header.header,
body:has(.j9-header) header.page-header,
body:has(.j9-header) footer.page-footer,
body:has(.j9-header) #back2top,
.j9-header + header.header,
.j9-header + header.header + header.page-header,
.j9-header ~ footer.page-footer,
.j9-header ~ #back2top {
    display: none !important;
}

.j9-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--j9-white);
    transition: background-color 240ms ease, box-shadow 240ms ease;
}

.j9-header.is-scrolled,
.j9-header.is-open {
    background: rgba(3, 16, 36, 0.96);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.j9-header__inner {
    display: flex;
    align-items: center;
    gap: 30px;
    width: min(100% - 56px, 1450px);
    min-height: 84px;
    margin: 0 auto;
}

.j9-header__brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    color: var(--j9-white) !important;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.14em;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
}

.j9-header__brand strong {
    font-weight: 700;
}

.j9-header__brand img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.j9-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: clamp(18px, 2.3vw, 46px);
}

.j9-header__nav a,
.j9-header__contact,
.j9-header__language a,
.j9-header__language-fallback a {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: color 180ms ease, opacity 180ms ease;
}

.j9-header__nav a:hover,
.j9-header__nav a.is-active,
.j9-header__contact:hover,
.j9-header__language a:hover,
.j9-header__language-fallback a:hover {
    color: var(--j9-gold) !important;
}

.j9-header__nav a.is-active {
    border-bottom-color: var(--j9-gold);
}

.j9-header__tools {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 22px;
}

.j9-header__contact {
    border-bottom: 1px solid var(--j9-gold);
    padding: 0 0 7px;
}

.j9-header__language,
.j9-header__language-fallback {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.75);
}

.j9-header__language .dropdown {
    position: relative;
}

.j9-header__language .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 0;
    color: var(--j9-white);
    background: rgba(3, 16, 36, 0.32);
    box-shadow: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.j9-header__language .dropdown-toggle:hover,
.j9-header__language .dropdown-toggle.active {
    border-color: var(--j9-gold);
    color: var(--j9-white);
    background: rgba(3, 16, 36, 0.72);
}

.j9-header__language.language-wrapper .dropdown .dropdown-menu {
    position: absolute;
    z-index: 80;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    display: none;
    float: none;
    width: 168px;
    min-width: 168px;
    margin: 0;
    padding: 6px;
    border: 1px solid rgba(244, 189, 8, 0.38);
    border-radius: 2px;
    color: var(--j9-white);
    background-color: rgba(3, 16, 36, 0.98);
    box-shadow: 0 18px 38px rgba(3, 16, 36, 0.28);
    line-height: 1.2;
    text-align: left;
}

.j9-header__language.language-wrapper .dropdown .dropdown-menu li {
    display: block;
    float: none;
    width: 100%;
    margin: 0;
    list-style: none;
}

.j9-header__language.language-wrapper .dropdown .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    min-height: 38px;
    margin: 0 !important;
    padding: 9px 10px;
    color: var(--j9-white) !important;
    background: transparent;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-align: left;
    white-space: nowrap;
}

.j9-header__language.language-wrapper .dropdown .dropdown-menu li a:hover {
    color: var(--j9-gold) !important;
    background: rgba(244, 189, 8, 0.12);
}

.j9-header__language.language-wrapper .dropdown .dropdown-menu li a span {
    color: inherit;
}

.j9-header__language.language-wrapper .dropdown .dropdown-menu li .flag {
    flex: 0 0 auto;
    margin: 0;
}

.j9-header__language img {
    width: 18px;
    height: auto;
}

.j9-header__language .language-wrapper,
.j9-header__language .language-switcher,
.j9-header__language > div,
.j9-header__language > ul {
    margin: 0;
}

.j9-header__language select {
    min-width: 56px;
    border: 0;
    color: var(--j9-white);
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    outline: 0;
    text-transform: uppercase;
}

.j9-header__language option {
    color: var(--j9-ink);
}

.j9-header__language-fallback span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.j9-header__toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.j9-header__toggle span:not(.visually-hidden) {
    display: block;
    width: 100%;
    height: 1px;
    margin: 4px 0;
    background: var(--j9-white);
    transition: transform 180ms ease, opacity 180ms ease;
}

.j9-header.is-open .j9-header__toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.j9-header.is-open .j9-header__toggle span:nth-child(2) {
    opacity: 0;
}

.j9-header.is-open .j9-header__toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.j9-homepage,
.j9-homepage * {
    box-sizing: border-box;
}

.j9-homepage {
    overflow: hidden;
    color: var(--j9-ink);
    background: var(--j9-sand);
    font-family: "Montserrat", "Arial", sans-serif;
}

.j9-homepage a {
    text-decoration: none;
}

.j9-homepage a:focus-visible,
.j9-header a:focus-visible,
.j9-header button:focus-visible {
    outline: 2px solid var(--j9-gold);
    outline-offset: 4px;
}

.j9-container {
    width: min(100% - 56px, 1240px);
    margin: 0 auto;
}

.j9-hero {
    position: relative;
    display: flex;
    min-height: 720px;
    height: 100svh;
    max-height: 1080px;
    overflow: hidden;
    color: var(--j9-white);
    isolation: isolate;
}

.j9-hero__background,
.j9-hero::after {
    position: absolute;
    inset: 0;
    content: "";
}

.j9-hero__background {
    z-index: -2;
    background-image: linear-gradient(180deg, rgba(3, 15, 33, 0.58) 0%, rgba(4, 22, 48, 0.16) 48%, rgba(2, 12, 30, 0.84) 100%), url("../images/background.webp");
    background-position: center;
    background-size: cover;
    transform: scale(1);
    transform-origin: center;
}

.j9-hero::after {
    z-index: -1;
    background: radial-gradient(ellipse at 53% 51%, rgba(13, 55, 98, 0.06), transparent 54%);
    pointer-events: none;
}

.j9-hero__brand-lockup {
    position: absolute;
    z-index: 3;
    top: clamp(102px, 12vh, 150px);
    left: 50%;
    width: min(520px, 88vw);
    text-align: center;
    transform: translateX(-50%);
}

.j9-hero__mark {
    display: block;
    width: clamp(86px, 9vw, 132px);
    height: auto;
    margin: 0 auto 10px;
    object-fit: contain;
}

.j9-hero__wordmark {
    color: var(--j9-white);
    font-size: clamp(48px, 6.2vw, 92px);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 0.94;
    text-indent: 0.08em;
}

.j9-hero__wordmark strong {
    font-weight: 800;
}

.j9-hero__gold-rule {
    display: flex;
    align-items: center;
    gap: 9px;
    width: min(520px, 80vw);
    margin: 17px auto 10px;
    color: var(--j9-gold);
}

.j9-hero__gold-rule span {
    display: block;
    flex: 1 1 auto;
    height: 1px;
    background: var(--j9-gold);
}

.j9-hero__gold-rule i {
    font-size: 16px;
    font-style: normal;
    line-height: 1;
}

.j9-hero__tagline {
    margin: 0;
    color: var(--j9-white);
    font-size: clamp(11px, 1.2vw, 17px);
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.25;
}

.j9-hero__aircraft {
    position: absolute;
    z-index: 2;
    top: 32%;
    left: 50%;
    width: min(1290px, 90vw);
    transform: translateX(-50%);
}

.j9-hero__aircraft img {
    display: block;
    width: 100%;
    height: auto;
    transform:
        translate3d(
            var(--j9-flight-x, 0px),
            var(--j9-flight-y, 0px),
            0
        )
        scale(var(--j9-flight-scale, 1));
    transform-origin: 50% 55%;
    will-change: transform;
    filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.22));
}

.j9-hero__bottom {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: clamp(30px, 5vh, 62px);
    left: 0;
    text-align: center;
}

.j9-hero__bottom h1 {
    max-width: 1200px;
    margin: 0 auto clamp(22px, 3vh, 36px);
    padding: 0 20px;
    color: var(--j9-white);
    font-size: clamp(22px, 2.5vw, 40px);
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.18;
    text-transform: uppercase;
}

.j9-service-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(1050px, calc(100% - 56px));
    margin: 0 auto;
}

.j9-service-tile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 126px;
    padding: 8px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--j9-white) !important;
    text-align: center;
    overflow: hidden;
    transition: background-color 240ms ease, transform 240ms ease;
}

.j9-service-tile::after {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    height: 2px;
    background: var(--j9-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 260ms ease;
}

.j9-service-tile:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.j9-service-tile:hover {
    background: rgba(3, 16, 36, 0.28);
    transform: translateY(-4px);
}

.j9-service-tile:hover::after {
    transform: scaleX(1);
}

.j9-service-tile__icon {
    display: block;
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
}

.j9-service-tile__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.j9-service-tile__label {
    display: block;
    flex: 1 1 auto;
    color: var(--j9-white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.45;
    white-space: pre-line;
}

.j9-section {
    position: relative;
    padding: clamp(82px, 7.2vw, 112px) 0;
}

.j9-eyebrow {
    margin: 0 0 18px;
    color: var(--j9-gold-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    line-height: 1.3;
    text-transform: uppercase;
}

.j9-intro {
    overflow: hidden;
    background: var(--j9-sand);
}

.j9-intro::before {
    position: absolute;
    top: -230px;
    right: -190px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(16, 34, 61, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(16, 34, 61, 0.025);
    content: "";
    pointer-events: none;
}

.j9-intro .j9-container,
.j9-services .j9-container,
.j9-cta .j9-container {
    position: relative;
    z-index: 1;
}

.j9-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(48px, 6vw, 92px);
}

.j9-intro h2,
.j9-section-heading h2,
.j9-cta h2 {
    margin: 0;
    color: var(--j9-ink);
    font-size: clamp(34px, 3.5vw, 54px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.07;
    text-wrap: balance;
}

.j9-intro h2 {
    max-width: 590px;
}

.j9-lead {
    max-width: 590px;
    margin: 24px 0 30px;
    color: #4c586a;
    font-size: 16px;
    line-height: 1.8;
}

.j9-button {
    display: inline-flex;
    align-items: center;
    gap: 19px;
    min-height: 48px;
    padding: 0 21px;
    border: 1px solid var(--j9-ink);
    color: var(--j9-ink) !important;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.j9-button span,
.j9-text-link span {
    color: var(--j9-gold-soft);
    font-size: 17px;
    line-height: 1;
    transition: transform 220ms ease;
}

.j9-button:hover {
    border-color: var(--j9-navy);
    color: var(--j9-white) !important;
    background: var(--j9-navy);
    box-shadow: 0 14px 30px rgba(3, 16, 36, 0.16);
    transform: translateY(-2px);
}

.j9-button:hover span,
.j9-text-link:hover span {
    transform: translate(3px, -3px);
}

.j9-intro__visual {
    position: relative;
    min-height: 315px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.j9-intro__visual::before,
.j9-intro__visual::after {
    position: absolute;
    z-index: 2;
    content: "";
    pointer-events: none;
}

.j9-intro__visual::before {
    top: -12px;
    left: -12px;
    width: 72px;
    height: 72px;
    border-top: 2px solid var(--j9-gold);
    border-left: 2px solid var(--j9-gold);
}

.j9-intro__visual::after {
    right: -17px;
    bottom: 54px;
    width: 34px;
    height: 1px;
    background: var(--j9-gold);
}

.j9-intro__visual-main {
    display: flex;
    align-items: center;
    min-height: 315px;
    padding: 24px 0;
    overflow: visible;
}

.j9-intro__visual-main img {
    display: block;
    width: 92%;
    max-width: 955px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;

    /* J9 Fly intro aircraft banking */
    transform:
        translate3d(
            var(--j9-intro-flight-x, 0px),
            var(--j9-intro-flight-y, 0px),
            0
        )
        rotate(var(--j9-intro-flight-bank, 0deg));
    transform-origin: 50% 55%;
    will-change: transform;
    filter: drop-shadow(0 20px 24px rgba(16, 34, 61, 0.16));
}

.j9-intro__visual-caption {
    position: absolute;
    right: 22px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 13px;
    color: var(--j9-white);
    background: rgba(6, 26, 53, 0.9);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.5;
}

.j9-intro__visual-caption img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.j9-services {
    overflow: hidden;
    color: var(--j9-ink);
    background:
        radial-gradient(circle at 88% 5%, rgba(255, 255, 255, 0.95), transparent 33%),
        linear-gradient(180deg, #eef3f7 0%, var(--j9-mist) 100%);
}

.j9-services::before {
    position: absolute;
    top: 68px;
    right: clamp(28px, 5vw, 76px);
    width: 86px;
    height: 86px;
    border-top: 1px solid rgba(16, 34, 61, 0.16);
    border-right: 1px solid rgba(16, 34, 61, 0.16);
    content: "";
    pointer-events: none;
}

.j9-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
}

.j9-services h2 {
    max-width: 650px;
    color: var(--j9-ink);
}

.j9-text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    color: var(--j9-ink) !important;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 220ms ease;
}

.j9-text-link:hover {
    color: var(--j9-gold-soft) !important;
}

.j9-service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--j9-line);
    border-bottom: 1px solid var(--j9-line);
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 24px 60px rgba(24, 42, 66, 0.06);
}

.j9-service-card {
    position: relative;
    min-height: 260px;
    padding: 30px clamp(22px, 3vw, 42px) 34px;
    border-right: 1px solid var(--j9-line);
    overflow: hidden;
    transition: background-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.j9-service-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--j9-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 280ms ease;
}

.j9-service-card:first-child {
    border-left: 1px solid var(--j9-line);
}

.j9-service-card:hover {
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 48px rgba(24, 42, 66, 0.12);
    transform: translateY(-7px);
}

.j9-service-card:hover::before {
    transform: scaleX(1);
}

.j9-service-card__number {
    display: block;
    margin-bottom: 44px;
    color: var(--j9-gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.j9-service-card h3 {
    margin: 0 0 16px;
    color: var(--j9-ink);
    font-size: clamp(21px, 2vw, 30px);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.j9-service-card p {
    max-width: 320px;
    margin: 0;
    color: #526174;
    font-size: 14px;
    line-height: 1.65;
}

.j9-service-card > a {
    position: absolute;
    right: 30px;
    bottom: 30px;
    color: var(--j9-gold) !important;
    font-size: 22px;
}

.j9-fleet {
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 590px;
    overflow: hidden;
    color: var(--j9-white);
}

.j9-fleet__image,
.j9-fleet__overlay {
    position: absolute;
    inset: 0;
}

.j9-fleet__image {
    z-index: -2;
    background: var(--j9-navy);
}

.j9-fleet__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.025);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.j9-fleet__overlay {
    z-index: -1;
    background: linear-gradient(90deg, rgba(3, 16, 36, 0.84), rgba(3, 16, 36, 0.24) 70%, rgba(3, 16, 36, 0.3));
}

.j9-fleet__content {
    position: relative;
    max-width: 1240px;
    padding-left: 32px;
}

.j9-fleet__content::before {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--j9-gold), rgba(244, 189, 8, 0));
    content: "";
    transform: scaleY(0.25);
    transform-origin: top;
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.j9-fleet.is-in-view .j9-fleet__image img {
    transform: scale(1);
}

.j9-fleet.is-in-view .j9-fleet__content::before {
    transform: scaleY(1);
}

.j9-fleet h2 {
    max-width: 690px;
    margin: 0 0 32px;
    color: var(--j9-white);
    font-size: clamp(38px, 4.2vw, 64px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.04;
    text-wrap: balance;
}

.j9-button--light {
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--j9-white) !important;
}

.j9-button--light:hover {
    border-color: var(--j9-gold);
    background: var(--j9-gold);
    color: var(--j9-navy) !important;
}

.j9-cta {
    isolation: isolate;
    overflow: hidden;
    background: var(--j9-gold);
}

.j9-cta::before,
.j9-cta::after {
    position: absolute;
    z-index: 0;
    content: "";
    pointer-events: none;
}

.j9-cta::before {
    top: 50%;
    right: clamp(32px, 8vw, 140px);
    width: 280px;
    height: 280px;
    border: 1px solid rgba(16, 34, 61, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 36px rgba(16, 34, 61, 0.035);
    transform: translateY(-50%);
}

.j9-cta::after {
    top: 0;
    right: 18%;
    width: 1px;
    height: 100%;
    background: rgba(16, 34, 61, 0.12);
    transform: rotate(24deg) scaleY(1.5);
}

.j9-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.j9-cta h2 {
    max-width: 700px;
}

.j9-cta p:not(.j9-eyebrow) {
    max-width: 530px;
    margin: 22px 0 0;
    color: rgba(16, 34, 61, 0.75);
    font-size: 15px;
    line-height: 1.7;
}

.j9-cta .j9-button {
    border-color: var(--j9-ink);
    background: rgba(255, 255, 255, 0.14);
    white-space: nowrap;
}

.j9-cta .j9-button:hover {
    background: var(--j9-navy);
}

/* Motion is enabled only after JavaScript is ready, so content remains visible
   if scripts are unavailable. */
.j9-motion-ready .j9-reveal {
    opacity: 0;
    translate: 0 28px;
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--j9-delay, 0ms),
        translate 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--j9-delay, 0ms),
        clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--j9-delay, 0ms);
}

.j9-motion-ready .j9-intro__visual.j9-reveal {
    clip-path: inset(0 0 0 24%);
    translate: 30px 0;
}

.j9-motion-ready .j9-reveal.is-visible {
    opacity: 1;
    translate: 0 0;
}

.j9-motion-ready .j9-intro__visual.j9-reveal.is-visible {
    clip-path: inset(-14px -20px -14px -14px);
}

.j9-motion-ready .j9-hero__background {
    transform: scale(1.045);
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.j9-motion-ready .j9-hero__brand-lockup,
.j9-motion-ready .j9-hero__aircraft,
.j9-motion-ready .j9-hero__bottom {
    opacity: 0;
    transition: opacity 900ms ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.j9-motion-ready .j9-hero__brand-lockup {
    transform: translate(-50%, -18px);
    transition-delay: 80ms;
}

.j9-motion-ready .j9-hero__aircraft {
    transform: translate(-47%, 24px) scale(0.98);
    transition-delay: 220ms;
}

.j9-motion-ready .j9-hero__bottom {
    transform: translateY(22px);
    transition-delay: 420ms;
}

.j9-motion-ready .j9-hero__gold-rule span {
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1) 420ms;
}

.j9-motion-ready .j9-hero.is-ready .j9-hero__background {
    transform: scale(1);
}

.j9-motion-ready .j9-hero.is-ready .j9-hero__brand-lockup,
.j9-motion-ready .j9-hero.is-ready .j9-hero__aircraft,
.j9-motion-ready .j9-hero.is-ready .j9-hero__bottom {
    opacity: 1;
}

.j9-motion-ready .j9-hero.is-ready .j9-hero__brand-lockup {
    transform: translateX(-50%);
}

.j9-motion-ready .j9-hero.is-ready .j9-hero__aircraft {
    transform: translateX(-50%);
}

.j9-motion-ready .j9-hero.is-ready .j9-hero__bottom {
    transform: translateY(0);
}

.j9-motion-ready .j9-hero.is-ready .j9-hero__gold-rule span {
    transform: scaleX(1);
}

.j9-footer {
    color: rgba(255, 255, 255, 0.72);
    background: var(--j9-navy-deep);
}

.j9-footer__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(190px, 0.65fr)
        minmax(220px, 0.65fr);
    gap: clamp(40px, 6vw, 110px);
    padding-top: 72px;
    padding-bottom: 68px;
}

.j9-footer__brand {
    display: inline-block;
    margin-bottom: 21px;
    color: var(--j9-white) !important;
    font-size: 27px;
    font-weight: 300;
    letter-spacing: 0.12em;
}

.j9-footer__brand strong {
    font-weight: 800;
}

.j9-footer p {
    max-width: 330px;
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.j9-footer__label {
    margin: 7px 0 20px !important;
    color: var(--j9-gold);
    font-size: 10px !important;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.j9-footer__links,
.j9-footer__email {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.j9-footer__links a,
.j9-footer__email {
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 12px;
    line-height: 1.4;
}

.j9-footer__links a:hover,
.j9-footer__email:hover {
    color: var(--j9-gold) !important;
}

/* J9 Fly widgetized footer */
.j9-footer__legal-block {
    justify-self: center;
    width: min(100%, 240px);
}

.j9-footer__contact-block {
    justify-self: end;
    width: min(100%, 320px);
}

.j9-footer__contact-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.j9-footer__widget-area,
.j9-footer__widget-area .widget,
.j9-footer__widget-area .widget__content {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.j9-footer__widget-area .widget__header {
    margin: 0;
}

.j9-footer__widget-area .widget__title {
    margin: 7px 0 20px;
    color: var(--j9-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.j9-footer__widget-area p {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.7;
}

.j9-footer__widget-area a {
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 12px;
    line-height: 1.5;
}

.j9-footer__widget-area a:hover {
    color: var(--j9-gold) !important;
}

.j9-footer__widget-area ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.j9-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding-top: 18px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .j9-header__inner {
        gap: 18px;
    }

    .j9-header__nav {
        gap: 15px;
    }

    .j9-header__nav a,
    .j9-header__contact,
    .j9-header__language a,
    .j9-header__language-fallback a {
        font-size: 9px;
        letter-spacing: 0.1em;
    }

    .j9-service-tile {
        padding-right: 14px;
        padding-left: 14px;
    }

    .j9-service-tile__icon {
        width: 56px;
        height: 56px;
    }

    .j9-service-tile__label {
        font-size: 8px;
    }
}

@media (max-width: 800px) {
    .j9-header__inner {
        width: min(100% - 36px, 1450px);
        min-height: 70px;
    }

    /* J9 Fly mobile header controls */
    .j9-header__brand {
        order: 1;
    }

    .j9-header__toggle {
        order: 3;
        flex: 0 0 42px;
        margin-left: 0;
        display: block;
    }

    .j9-header__nav {
        order: 4;
        position: absolute;
        top: 70px;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 20px 17px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(3, 16, 36, 0.98);
    }

    .j9-header.is-open .j9-header__nav {
        display: flex;
    }

    .j9-header__nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 11px;
    }

    .j9-header__nav a:last-child {
        border-bottom: 0;
    }

    .j9-header__tools {
        position: relative;
        z-index: 2;
        order: 2;
        margin-left: auto;
    }

    .j9-header__contact {
        display: none;
    }

    .j9-hero {
        min-height: 700px;
    }

    .j9-hero__brand-lockup {
        top: 105px;
    }

    .j9-hero__aircraft {
        top: 39%;
        width: 123vw;
        max-width: none;
        transform: translateX(-39%);
    }

    .j9-motion-ready .j9-hero__aircraft {
        transform: translate(-36%, 24px) scale(0.98);
    }

    .j9-motion-ready .j9-hero.is-ready .j9-hero__aircraft {
        transform: translateX(-39%);
    }

    .j9-hero__bottom {
        bottom: 26px;
    }

    .j9-hero__bottom h1 {
        margin-bottom: 13px;
        font-size: 16px;
        letter-spacing: 0.09em;
    }

    .j9-service-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100% - 30px, 520px);
    }

    .j9-service-tile {
        min-height: 78px;
        padding: 5px 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.22);
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .j9-service-tile:nth-child(2n) {
        border-right: 0;
    }

    .j9-service-tile:nth-child(-n + 2) {
        border-top: 1px solid rgba(255, 255, 255, 0.22);
    }

    .j9-service-tile:first-child {
        border-left: 0;
    }

    .j9-service-tile__icon {
        width: 43px;
        height: 43px;
    }

    .j9-service-tile__label {
        font-size: 7px;
        letter-spacing: 0.05em;
    }

    .j9-container {
        width: min(100% - 36px, 1240px);
    }

    .j9-section {
        padding: 72px 0;
    }

    .j9-intro__grid,
    .j9-service-cards,
    .j9-footer__grid {
        grid-template-columns: 1fr;
    }

    .j9-intro__grid {
        gap: 38px;
    }

    .j9-intro__visual {
        min-height: 245px;
    }

    .j9-intro__visual-main {
        min-height: 245px;
    }

    .j9-section-heading,
    .j9-cta__inner {
        display: block;
    }

    .j9-section-heading .j9-text-link {
        margin-top: 22px;
    }

    .j9-service-card {
        min-height: 225px;
        border-right: 0;
        border-bottom: 1px solid var(--j9-line);
    }

    .j9-service-card:first-child {
        border-left: 0;
    }

    .j9-service-card:last-child {
        border-bottom: 0;
    }

    .j9-fleet {
        min-height: 620px;
    }

    .j9-fleet__image img {
        object-position: 68% center;
    }

    .j9-fleet__content {
        padding-left: 20px;
    }

    .j9-services::before {
        top: 36px;
        right: 18px;
        width: 54px;
        height: 54px;
    }

    .j9-cta::before {
        right: -110px;
        width: 240px;
        height: 240px;
    }

    .j9-cta .j9-button {
        margin-top: 30px;
    }

    .j9-footer__grid {
        gap: 35px;
    }

    .j9-footer__legal-block,
    .j9-footer__contact-block {
        justify-self: start;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .j9-header__tools {
        gap: 10px;
    }

    .j9-header__language {
        max-width: none;
        overflow: visible;
    }

    .j9-header__language.language-wrapper,
    .j9-header__language .dropdown {
        overflow: visible;
    }

    .j9-header__language .dropdown-toggle {
        justify-content: center;
        gap: 0;
        width: 42px;
        min-width: 42px;
        padding-right: 0;
        padding-left: 0;
    }

    /* J9 Fly mobile language flag visibility */
    .j9-header__language
        .dropdown-toggle
        > svg.flag {
        display: block !important;
        flex: 0 0 20px;
        width: 20px !important;
        height: 15px !important;
    }

    .j9-header__language
        .dropdown-toggle::after {
        display: none;
        content: none;
    }

    .j9-header__language
        .dropdown-toggle
        > span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .j9-header__language.language-wrapper
        .dropdown
        .dropdown-menu {
        z-index: 100;
        right: 0;
        left: auto;
    }

    .j9-hero__wordmark {
        font-size: 46px;
    }

    .j9-hero__tagline {
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .j9-hero__aircraft {
        top: 39%;
        width: 145vw;
        transform: translateX(-32%);
    }

    .j9-motion-ready .j9-hero__aircraft {
        transform: translate(-28%, 24px) scale(0.98);
    }

    .j9-motion-ready .j9-hero.is-ready .j9-hero__aircraft {
        transform: translateX(-32%);
    }

    .j9-hero__bottom h1 {
        font-size: 13px;
    }

    .j9-service-tile__icon {
        width: 34px;
        height: 34px;
    }

    .j9-service-tile__label {
        font-size: 6px;
    }

    .j9-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .j9-homepage *,
    .j9-header * {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* J9 Fly inner pages */
.j9-page,
.j9-page * {
    box-sizing: border-box;
}

.j9-page {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    overflow: hidden;
    color: var(--j9-ink);
    background: var(--j9-sand);
    font-family: "Montserrat", "Arial", sans-serif;
}

.j9-page a {
    text-decoration: none;
}

.j9-page a:focus-visible {
    outline: 2px solid var(--j9-gold);
    outline-offset: 4px;
}

main > .post.post--single:has(.j9-page),
main > .post.post--single:has(.j9-page) > .post__content {
    max-width: none;
    padding: 0;
    margin: 0;
}

/* Inner page hero */
.j9-page-hero {
    position: relative;
    display: flex;
    min-height: clamp(650px, 78vh, 820px);
    align-items: center;
    overflow: hidden;
    padding: clamp(150px, 13vw, 190px) 0 clamp(88px, 8vw, 120px);
    color: var(--j9-white);
    background:
        radial-gradient(circle at 72% 42%, rgba(38, 105, 156, 0.42), transparent 34%),
        linear-gradient(135deg, #031329 0%, #052443 55%, #071a32 100%);
}

.j9-page-hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent 82%);
    content: "";
    pointer-events: none;
}

.j9-page-hero::after {
    position: absolute;
    top: 18%;
    left: -170px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 193, 7, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 58px rgba(255, 193, 7, 0.025),
        0 0 0 116px rgba(255, 193, 7, 0.018);
    content: "";
    pointer-events: none;
}

.j9-page-hero__glow {
    position: absolute;
    right: 7%;
    bottom: 8%;
    width: 360px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.12);
    filter: blur(80px);
    pointer-events: none;
}

.j9-page-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    align-items: center;
    gap: clamp(36px, 5vw, 82px);
}

.j9-page-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.j9-page-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: clamp(42px, 6vw, 72px);
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.j9-page-hero__breadcrumbs a {
    color: var(--j9-gold-soft);
}

.j9-page-hero__breadcrumbs a:hover {
    color: var(--j9-white);
}

.j9-page-hero .j9-eyebrow {
    margin-bottom: 20px;
}

.j9-page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--j9-white);
    font-size: clamp(48px, 5.5vw, 82px);
    font-weight: 500;
    letter-spacing: -0.048em;
    line-height: 0.98;
}

.j9-page-hero__lead {
    max-width: 610px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(16px, 1.35vw, 20px);
    font-weight: 500;
    line-height: 1.75;
}

.j9-page-hero__visual {
    position: relative;
    min-height: 480px;
}

.j9-page-hero__visual::before,
.j9-page-hero__visual::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.j9-page-hero__visual::before {
    top: 5%;
    right: 1%;
    width: 96px;
    height: 96px;
    border-top: 2px solid var(--j9-gold);
    border-right: 2px solid var(--j9-gold);
}

.j9-page-hero__visual::after {
    right: 5%;
    bottom: 6%;
    width: 140px;
    height: 1px;
    background: var(--j9-gold);
}

.j9-page-hero__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(37vw, 480px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    box-shadow:
        0 0 0 42px rgba(255, 255, 255, 0.025),
        0 0 0 84px rgba(255, 255, 255, 0.016);
    transform: translate(-50%, -50%);
}

.j9-page-hero__visual img {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    display: block;
    width: min(52vw, 680px);
    max-height: 540px;
    object-fit: contain;
    filter: drop-shadow(0 36px 38px rgba(0, 0, 0, 0.3));
    will-change: transform;
    transform:
        translate(-50%, -50%)
        translate3d(var(--j9-page-flight-x, 0px), 0, 0)
        rotate(-3deg);
}

/* About story */
.j9-about-story {
    overflow: hidden;
    background: var(--j9-sand);
}

.j9-about-story::before {
    position: absolute;
    top: -220px;
    right: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(16, 34, 61, 0.07);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(16, 34, 61, 0.022);
    content: "";
    pointer-events: none;
}

.j9-about-story__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(48px, 7vw, 110px);
}

.j9-about-story__copy {
    max-width: 570px;
}

.j9-about-story h2,
.j9-about-values h2,
.j9-about-directions h2,
.j9-about-signature h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.j9-about-story h2,
.j9-about-directions h2 {
    color: var(--j9-ink);
}

.j9-about-story .j9-lead {
    margin: 30px 0 0;
    color: var(--j9-ink);
    font-size: clamp(17px, 1.45vw, 21px);
    font-weight: 600;
    line-height: 1.68;
}

.j9-about-story__copy > p:last-child {
    margin: 20px 0 0;
    color: rgba(16, 34, 61, 0.68);
    font-size: 15px;
    line-height: 1.85;
}

.j9-about-story__visual {
    position: relative;
    display: flex;
    min-height: 430px;
    align-items: center;
    justify-content: center;
}

.j9-about-story__visual::after {
    position: absolute;
    right: 2%;
    bottom: 17%;
    width: 46px;
    height: 1px;
    background: var(--j9-gold);
    content: "";
}

.j9-about-story__corner {
    position: absolute;
    top: 8%;
    left: 3%;
    width: 84px;
    height: 84px;
    border-top: 2px solid var(--j9-gold);
    border-left: 2px solid var(--j9-gold);
}

.j9-about-story__visual img {
    display: block;
    width: 96%;
    height: auto;
    object-fit: contain;

    /* J9 Fly about story aircraft banking */
    transform:
        translate3d(
            var(--j9-about-flight-x, 0px),
            var(--j9-about-flight-y, 0px),
            0
        )
        rotate(var(--j9-about-flight-bank, 0deg));
    transform-origin: 50% 55%;
    will-change: transform;

    filter: drop-shadow(0 28px 28px rgba(16, 34, 61, 0.18));
}

/* Values */
.j9-about-values {
    overflow: hidden;
    color: var(--j9-white);
    background:
        radial-gradient(circle at 90% 8%, rgba(34, 94, 139, 0.36), transparent 28%),
        linear-gradient(135deg, #04162e, #082847);
}

.j9-about-values::before {
    position: absolute;
    top: -92px;
    right: 3%;
    color: rgba(255, 255, 255, 0.025);
    font-size: clamp(220px, 26vw, 430px);
    font-weight: 800;
    letter-spacing: -0.09em;
    line-height: 1;
    content: "J9";
    pointer-events: none;
}

.j9-about-values__heading {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.j9-about-values h2 {
    color: var(--j9-white);
}

.j9-about-values__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(48px, 6vw, 78px);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.j9-about-value {
    position: relative;
    min-height: 300px;
    padding: 38px clamp(24px, 3vw, 42px) 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.j9-about-value:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.j9-about-value::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--j9-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 400ms ease;
}

.j9-about-value:hover::after {
    transform: scaleX(1);
}

.j9-about-value__number {
    display: block;
    margin-bottom: 62px;
    color: var(--j9-gold-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.j9-about-value h3 {
    margin: 0;
    color: var(--j9-white);
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.j9-about-value p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.75;
}

/* Directions */
.j9-about-directions {
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 4%, rgba(255, 255, 255, 0.96), transparent 31%),
        linear-gradient(180deg, #edf3f7 0%, var(--j9-mist) 100%);
}

.j9-about-directions__heading {
    max-width: 820px;
}

.j9-about-directions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: clamp(48px, 6vw, 76px);
}

.j9-about-direction {
    display: grid;
    grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
    min-height: 270px;
    overflow: hidden;
    border: 1px solid rgba(16, 34, 61, 0.1);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 48px rgba(16, 34, 61, 0.07);
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms ease;
}

.j9-about-direction:hover {
    border-color: rgba(212, 163, 0, 0.52);
    box-shadow: 0 24px 60px rgba(16, 34, 61, 0.13);
    transform: translateY(-5px);
}

.j9-about-direction__image {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(223, 229, 234, 0.72), rgba(255, 255, 255, 0.94));
}

.j9-about-direction__image::after {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(16, 34, 61, 0.08);
    content: "";
    pointer-events: none;
}

.j9-about-direction__image img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 92%;
    height: 82%;
    object-fit: contain;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
    transform: translate(-50%, -50%);
}

.j9-about-direction:hover .j9-about-direction__image img {
    transform: translate(-50%, -50%) scale(1.055);
}

.j9-about-direction__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.j9-about-direction__content > span {
    margin-bottom: 26px;
    color: var(--j9-gold-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.j9-about-direction h3 {
    margin: 0;
    color: var(--j9-ink);
    font-size: clamp(21px, 1.75vw, 28px);
    font-weight: 650;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.j9-about-direction p {
    margin: 15px 0 0;
    color: rgba(16, 34, 61, 0.65);
    font-size: 13px;
    line-height: 1.7;
}

/* Final visual */
.j9-about-signature {
    position: relative;
    display: flex;
    min-height: 560px;
    align-items: center;
    overflow: hidden;
    color: var(--j9-white);
    background: #04152c;
}

.j9-about-signature__image,
.j9-about-signature__overlay {
    position: absolute;
    inset: 0;
}

.j9-about-signature__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.j9-about-signature__overlay {
    background:
        linear-gradient(90deg, rgba(2, 14, 31, 0.96) 0%, rgba(2, 14, 31, 0.78) 46%, rgba(2, 14, 31, 0.28) 78%, rgba(2, 14, 31, 0.2) 100%),
        linear-gradient(180deg, rgba(3, 17, 35, 0.2), rgba(3, 17, 35, 0.62));
}

.j9-about-signature__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding-top: clamp(100px, 10vw, 150px);
    padding-bottom: clamp(100px, 10vw, 150px);
}

.j9-about-signature h2 {
    max-width: 850px;
    color: var(--j9-white);
    font-size: clamp(40px, 5vw, 72px);
}

.j9-about-signature__content > p:last-child {
    max-width: 610px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .j9-page-hero {
        min-height: auto;
        padding-top: 145px;
    }

    .j9-page-hero__inner,
    .j9-about-story__grid {
        grid-template-columns: 1fr;
    }

    .j9-page-hero__copy {
        max-width: 760px;
    }

    .j9-page-hero__breadcrumbs {
        margin-bottom: 42px;
    }

    .j9-page-hero__visual {
        min-height: 420px;
    }

    .j9-page-hero__visual img {
        width: min(80vw, 650px);
    }

    .j9-page-hero__orbit {
        width: min(58vw, 440px);
    }

    .j9-about-story__copy {
        max-width: 720px;
    }

    .j9-about-story__visual {
        min-height: 360px;
    }

    .j9-about-directions__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .j9-page-hero {
        padding: 128px 0 64px;
    }

    .j9-page-hero::after {
        left: -260px;
    }

    .j9-page-hero__inner {
        gap: 22px;
    }

    .j9-page-hero h1 {
        font-size: clamp(40px, 11vw, 58px);
        line-height: 1.02;
    }

    .j9-page-hero__lead {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.7;
    }

    .j9-page-hero__visual {
        min-height: 330px;
    }

    .j9-page-hero__visual::before {
        width: 64px;
        height: 64px;
    }

    .j9-page-hero__visual::after {
        width: 90px;
    }

    .j9-page-hero__visual img {
        width: min(96vw, 560px);
    }

    .j9-page-hero__orbit {
        width: min(76vw, 380px);
    }

    .j9-about-story__grid {
        gap: 28px;
    }

    .j9-about-story h2,
    .j9-about-values h2,
    .j9-about-directions h2,
    .j9-about-signature h2 {
        font-size: clamp(33px, 9vw, 46px);
    }

    .j9-about-story .j9-lead {
        margin-top: 24px;
        font-size: 16px;
    }

    .j9-about-story__visual {
        min-height: 270px;
    }

    .j9-about-values__grid {
        grid-template-columns: 1fr;
    }

    .j9-about-value {
        min-height: 230px;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .j9-about-value:last-child {
        border-bottom: 0;
    }

    .j9-about-value__number {
        margin-bottom: 38px;
    }

    .j9-about-direction {
        grid-template-columns: 1fr;
    }

    .j9-about-direction__image {
        min-height: 220px;
    }

    .j9-about-direction__content {
        padding: 28px;
    }

    .j9-about-signature {
        min-height: 520px;
    }

    .j9-about-signature__image img {
        object-position: 62% center;
    }

    .j9-about-signature__overlay {
        background:
            linear-gradient(90deg, rgba(2, 14, 31, 0.93), rgba(2, 14, 31, 0.52)),
            linear-gradient(180deg, rgba(3, 17, 35, 0.2), rgba(3, 17, 35, 0.82));
    }
}

@media (max-width: 480px) {
    .j9-page-hero__breadcrumbs {
        gap: 8px;
        margin-bottom: 34px;
        font-size: 8px;
    }

    .j9-page-hero__visual {
        min-height: 290px;
    }

    .j9-page-hero__visual img {
        width: 105vw;
    }

    .j9-about-story__visual {
        min-height: 235px;
    }

    .j9-about-story__corner {
        width: 60px;
        height: 60px;
    }

    .j9-about-story__visual img {
        width: 104%;
    }

    .j9-about-direction__image {
        min-height: 190px;
    }

    .j9-about-signature {
        min-height: 500px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .j9-about-story__visual img,
    .j9-about-value::after,
    .j9-about-direction,
    .j9-about-direction__image img {
        transition: none !important;
    }

    .j9-about-story__visual img {
        transform: none !important;
        will-change: auto;
    }
}

/* J9 inner-page typography isolation */
.j9-page .j9-page-hero h1,
.j9-page .j9-about-values h2,
.j9-page .j9-about-value h3,
.j9-page .j9-about-signature h2 {
    color: var(--j9-white);
}

.j9-page .j9-about-story h2,
.j9-page .j9-about-directions h2,
.j9-page .j9-about-direction h3,
.j9-page .j9-cta h2 {
    color: var(--j9-ink);
}

.j9-page p.j9-eyebrow {
    color: var(--j9-gold-soft);
}

.j9-page p.j9-page-hero__lead {
    color: rgba(255, 255, 255, 0.76);
}

.j9-page .j9-about-story p.j9-lead {
    color: var(--j9-ink);
}

.j9-page .j9-about-story__copy > p:last-child {
    color: rgba(16, 34, 61, 0.68);
}

.j9-page .j9-about-value p {
    color: rgba(255, 255, 255, 0.65);
}

.j9-page .j9-about-direction p {
    color: rgba(16, 34, 61, 0.65);
}

.j9-page .j9-about-signature__content > p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

.j9-page .j9-cta p:not(.j9-eyebrow) {
    color: rgba(16, 34, 61, 0.75);
}
/* J9 Fly services page */
.j9-service-page-intro,
.j9-service-catalog,
.j9-service-process,
.j9-service-signature {
    position: relative;
}

.j9-service-page-intro {
    overflow: hidden;
    background: var(--j9-sand);
}

.j9-service-page-intro::before {
    position: absolute;
    top: -210px;
    right: -170px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(16, 34, 61, 0.07);
    border-radius: 50%;
    box-shadow: 0 0 0 56px rgba(16, 34, 61, 0.022);
    content: "";
    pointer-events: none;
}

.j9-service-page-intro__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(440px, 1.12fr);
    align-items: center;
    gap: clamp(55px, 7vw, 105px);
}

.j9-service-page-intro__copy {
    max-width: 590px;
}

.j9-service-page-intro h2,
.j9-service-catalog h2,
.j9-service-process h2,
.j9-service-signature h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 60px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.j9-service-page-intro__copy .j9-eyebrow {
    margin-bottom: 20px;
}

.j9-service-page-intro__copy p.j9-lead {
    margin: 30px 0 0;
    color: var(--j9-ink);
    font-size: clamp(17px, 1.45vw, 21px);
    font-weight: 600;
    line-height: 1.65;
}

.j9-service-page-intro__copy > p:last-child {
    margin: 22px 0 0;
    color: rgba(16, 34, 61, 0.68);
    font-size: 15px;
    line-height: 1.8;
}

.j9-service-page-intro__visual {
    position: relative;
    display: flex;
    min-height: 380px;
    align-items: center;
    justify-content: center;
}

.j9-service-page-intro__visual::before {
    position: absolute;
    inset: 8% 2%;
    border: 1px solid rgba(16, 34, 61, 0.09);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.85),
            rgba(234, 240, 245, 0.25)
        );
    content: "";
}

.j9-service-page-intro__visual span {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 76px;
    height: 76px;
    border-top: 2px solid var(--j9-gold);
    border-left: 2px solid var(--j9-gold);
}

.j9-service-page-intro__visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 112%;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 26px 30px rgba(16, 34, 61, 0.18));
}

/* Detailed service catalog */
.j9-service-catalog {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 7%,
            rgba(255, 255, 255, 0.95),
            transparent 26%
        ),
        linear-gradient(135deg, #eaf0f5, #f5f7f9);
}

.j9-service-catalog::before {
    position: absolute;
    right: -100px;
    bottom: -150px;
    width: 370px;
    height: 370px;
    border: 1px solid rgba(16, 34, 61, 0.06);
    border-radius: 50%;
    box-shadow: 0 0 0 52px rgba(16, 34, 61, 0.018);
    content: "";
    pointer-events: none;
}

.j9-service-catalog__heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 50px;
    max-width: 1080px;
    margin-bottom: clamp(55px, 7vw, 90px);
}

.j9-service-catalog__heading .j9-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -26px;
}

.j9-service-catalog__heading > p:last-child {
    margin: 0;
    color: rgba(16, 34, 61, 0.66);
    font-size: 15px;
    line-height: 1.75;
}

.j9-service-catalog__list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
}

.j9-service-detail {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.92fr)
        minmax(0, 1.08fr);
    min-height: 380px;
    overflow: hidden;
    border: 1px solid rgba(16, 34, 61, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 60px rgba(20, 42, 69, 0.08);
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease,
        translate 300ms ease;
}

.j9-service-detail.is-reverse {
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(320px, 0.92fr);
}

.j9-service-detail.is-reverse .j9-service-detail__image {
    order: 2;
}

.j9-service-detail.is-reverse .j9-service-detail__content {
    order: 1;
}

.j9-service-detail__image {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border-right: 1px solid rgba(16, 34, 61, 0.09);
    background:
        linear-gradient(
            145deg,
            rgba(224, 231, 236, 0.9),
            rgba(255, 255, 255, 0.96)
        );
}

.j9-service-detail.is-reverse .j9-service-detail__image {
    border-right: 0;
    border-left: 1px solid rgba(16, 34, 61, 0.09);
}

.j9-service-detail__image::after {
    position: absolute;
    right: 25px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    border-right: 1px solid var(--j9-gold);
    border-bottom: 1px solid var(--j9-gold);
    content: "";
    pointer-events: none;
}

.j9-service-detail__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.j9-service-detail__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 5vw, 72px);
}

.j9-service-detail__number {
    display: block;
    margin-bottom: 30px;
    color: var(--j9-gold-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.j9-service-detail h3 {
    margin: 0;
    color: var(--j9-ink);
    font-size: clamp(29px, 3vw, 44px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.j9-service-detail__content > p {
    max-width: 620px;
    margin: 20px 0 0;
    color: rgba(16, 34, 61, 0.68);
    font-size: 15px;
    line-height: 1.75;
}

.j9-service-detail ul {
    display: grid;
    gap: 11px;
    padding: 24px 0 0;
    margin: 24px 0 0;
    border-top: 1px solid rgba(16, 34, 61, 0.11);
    list-style: none;
}

.j9-service-detail li {
    position: relative;
    padding-left: 24px;
    color: var(--j9-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.j9-service-detail li::before {
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 8px;
    height: 2px;
    background: var(--j9-gold);
    content: "";
}

/* Cooperation process */
.j9-service-process {
    overflow: hidden;
    color: var(--j9-white);
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(35, 99, 150, 0.38),
            transparent 30%
        ),
        linear-gradient(135deg, #031329, #082847);
}

.j9-service-process::before {
    position: absolute;
    top: -105px;
    right: 2%;
    color: rgba(255, 255, 255, 0.025);
    font-size: clamp(220px, 26vw, 420px);
    font-weight: 800;
    letter-spacing: -0.09em;
    line-height: 1;
    content: "J9";
    pointer-events: none;
}

.j9-service-process__heading {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.j9-service-process__heading .j9-eyebrow {
    margin-bottom: 20px;
}

.j9-service-process__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(50px, 6vw, 80px);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.j9-service-process__step {
    position: relative;
    min-height: 300px;
    padding: 38px clamp(22px, 2.8vw, 38px) 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    transition: background-color 300ms ease;
}

.j9-service-process__step:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.j9-service-process__step::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--j9-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 350ms ease;
}

.j9-service-process__step > span {
    display: block;
    margin-bottom: 58px;
    color: var(--j9-gold-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.j9-service-process__step h3 {
    margin: 0;
    color: var(--j9-white);
    font-size: clamp(20px, 1.8vw, 27px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.j9-service-process__step p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.75;
}

/* Final services visual */
.j9-service-signature {
    display: flex;
    min-height: 580px;
    align-items: center;
    overflow: hidden;
    color: var(--j9-white);
    background: var(--j9-navy-deep);
}

.j9-service-signature__image,
.j9-service-signature__overlay {
    position: absolute;
    inset: 0;
}

.j9-service-signature__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.9) contrast(1.04);
}

.j9-service-signature__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 16, 36, 0.97) 0%,
            rgba(3, 16, 36, 0.82) 48%,
            rgba(3, 16, 36, 0.48) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3, 16, 36, 0.42),
            transparent 48%
        );
}

.j9-service-signature__content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    padding-top: clamp(105px, 10vw, 150px);
    padding-bottom: clamp(105px, 10vw, 150px);
}

.j9-service-signature__content .j9-eyebrow {
    margin-bottom: 20px;
}

.j9-service-signature__content > p:last-child {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

/* Ripple typography isolation for Services page */
.j9-page .j9-service-page-intro h2,
.j9-page .j9-service-catalog h2,
.j9-page .j9-service-detail h3 {
    color: var(--j9-ink);
}

.j9-page .j9-service-process h2,
.j9-page .j9-service-process__step h3,
.j9-page .j9-service-signature h2 {
    color: var(--j9-white);
}

.j9-page .j9-service-page-intro p.j9-lead,
.j9-page .j9-service-detail li {
    color: var(--j9-ink);
}

.j9-page .j9-service-page-intro__copy > p:last-child,
.j9-page .j9-service-catalog__heading > p:last-child,
.j9-page .j9-service-detail__content > p {
    color: rgba(16, 34, 61, 0.68);
}

.j9-page .j9-service-process__step p {
    color: rgba(255, 255, 255, 0.65);
}

.j9-page .j9-service-signature__content > p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

@media (hover: hover) {
    .j9-service-detail:hover {
        border-color: rgba(244, 189, 8, 0.42);
        box-shadow: 0 30px 75px rgba(20, 42, 69, 0.14);
        translate: 0 -4px;
    }

    .j9-service-detail:hover .j9-service-detail__image img {
        transform: scale(1.035);
    }

    .j9-service-process__step:hover {
        background: rgba(255, 255, 255, 0.035);
    }

    .j9-service-process__step:hover::after {
        transform: scaleX(1);
    }
}

@media (max-width: 1100px) {
    .j9-service-page-intro__grid {
        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(390px, 1.05fr);
        gap: 50px;
    }

    .j9-service-detail,
    .j9-service-detail.is-reverse {
        grid-template-columns:
            minmax(300px, 0.9fr)
            minmax(0, 1.1fr);
    }

    .j9-service-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .j9-service-process__step:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

    .j9-service-process__step:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
}

@media (max-width: 850px) {
    .j9-service-page-intro__grid,
    .j9-service-catalog__heading {
        grid-template-columns: 1fr;
    }

    .j9-service-page-intro__copy {
        max-width: 680px;
    }

    .j9-service-page-intro__visual {
        min-height: 320px;
    }

    .j9-service-catalog__heading {
        align-items: start;
        gap: 24px;
    }

    .j9-service-catalog__heading .j9-eyebrow {
        grid-column: auto;
        margin-bottom: 0;
    }

    .j9-service-catalog__heading > p:last-child {
        max-width: 620px;
    }

    .j9-service-detail,
    .j9-service-detail.is-reverse {
        grid-template-columns: 1fr;
    }

    .j9-service-detail.is-reverse .j9-service-detail__image,
    .j9-service-detail.is-reverse .j9-service-detail__content {
        order: initial;
    }

    .j9-service-detail__image,
    .j9-service-detail__image img {
        min-height: 300px;
    }

    .j9-service-detail__image,
    .j9-service-detail.is-reverse .j9-service-detail__image {
        border-right: 0;
        border-bottom: 1px solid rgba(16, 34, 61, 0.09);
        border-left: 0;
    }

    .j9-service-signature__overlay {
        background: rgba(3, 16, 36, 0.82);
    }
}

@media (max-width: 767px) {
    .j9-service-page-intro h2,
    .j9-service-catalog h2,
    .j9-service-process h2,
    .j9-service-signature h2 {
        font-size: clamp(33px, 9vw, 46px);
    }

    .j9-service-page-intro__grid {
        gap: 38px;
    }

    .j9-service-page-intro__visual {
        min-height: 255px;
    }

    .j9-service-page-intro__visual span {
        width: 58px;
        height: 58px;
    }

    .j9-service-detail__content {
        padding: 34px 28px 40px;
    }

    .j9-service-detail__image,
    .j9-service-detail__image img {
        min-height: 240px;
    }

    .j9-service-detail__number {
        margin-bottom: 22px;
    }

    .j9-service-detail h3 {
        font-size: clamp(27px, 8vw, 38px);
    }

    .j9-service-process__grid {
        grid-template-columns: 1fr;
    }

    .j9-service-process__step {
        min-height: 220px;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .j9-service-process__step:nth-child(3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .j9-service-process__step:last-child {
        border-bottom: 0;
    }

    .j9-service-process__step > span {
        margin-bottom: 34px;
    }

    .j9-service-signature {
        min-height: 520px;
    }

    .j9-service-signature__content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .j9-service-page-intro__visual {
        min-height: 220px;
    }

    .j9-service-page-intro__visual img {
        width: 120%;
    }

    .j9-service-detail__image,
    .j9-service-detail__image img {
        min-height: 205px;
    }

    .j9-service-detail__content {
        padding: 30px 24px 36px;
    }

    .j9-service-detail li {
        font-size: 13px;
    }

    .j9-service-signature {
        min-height: 480px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .j9-service-detail,
    .j9-service-detail__image img,
    .j9-service-process__step,
    .j9-service-process__step::after {
        transition: none !important;
    }
}

/* J9 Fly fleet page */
.j9-fleet-page-overview,
.j9-fleet-capabilities,
.j9-fleet-readiness,
.j9-fleet-gallery,
.j9-fleet-signature {
    position: relative;
}

.j9-fleet-page-overview h2,
.j9-fleet-capabilities h2,
.j9-fleet-readiness h2,
.j9-fleet-gallery h2,
.j9-fleet-signature h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 60px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

/* Fleet overview */
.j9-fleet-page-overview {
    overflow: hidden;
    background: var(--j9-sand);
}

.j9-fleet-page-overview::before {
    position: absolute;
    top: -220px;
    right: -180px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(16, 34, 61, 0.065);
    border-radius: 50%;
    box-shadow: 0 0 0 58px rgba(16, 34, 61, 0.02);
    content: "";
    pointer-events: none;
}

.j9-fleet-page-overview__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 0.86fr)
        minmax(440px, 1.14fr);
    align-items: center;
    gap: clamp(55px, 7vw, 105px);
}

.j9-fleet-page-overview__copy {
    max-width: 590px;
}

.j9-fleet-page-overview__copy .j9-eyebrow {
    margin-bottom: 20px;
}

.j9-fleet-page-overview__copy p.j9-lead {
    margin: 30px 0 0;
    color: var(--j9-ink);
    font-size: clamp(17px, 1.45vw, 21px);
    font-weight: 600;
    line-height: 1.65;
}

.j9-fleet-page-overview__copy > p:last-child {
    margin: 22px 0 0;
    color: rgba(16, 34, 61, 0.68);
    font-size: 15px;
    line-height: 1.8;
}

.j9-fleet-page-overview__visual {
    position: relative;
    display: flex;
    min-height: 380px;
    align-items: center;
    justify-content: center;
}

.j9-fleet-page-overview__visual::before {
    position: absolute;
    inset: 7% 1%;
    border: 1px solid rgba(16, 34, 61, 0.085);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.88),
            rgba(232, 238, 243, 0.26)
        );
    content: "";
}

.j9-fleet-page-overview__visual span {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 76px;
    height: 76px;
    border-top: 2px solid var(--j9-gold);
    border-left: 2px solid var(--j9-gold);
}

.j9-fleet-page-overview__visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 122%;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 32px rgba(16, 34, 61, 0.18));
}

/* Fleet capabilities */
.j9-fleet-capabilities {
    overflow: hidden;
    color: var(--j9-white);
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(35, 99, 150, 0.38),
            transparent 29%
        ),
        linear-gradient(135deg, #031329, #082847);
}

.j9-fleet-capabilities::before {
    position: absolute;
    top: -105px;
    right: 2%;
    color: rgba(255, 255, 255, 0.025);
    font-size: clamp(220px, 26vw, 420px);
    font-weight: 800;
    letter-spacing: -0.09em;
    line-height: 1;
    content: "J9";
    pointer-events: none;
}

.j9-fleet-capabilities__heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 0.68fr);
    align-items: end;
    gap: 50px;
    max-width: 1100px;
}

.j9-fleet-capabilities__heading > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.75;
}

.j9-fleet-capabilities__heading .j9-eyebrow {
    margin-bottom: 20px;
}

.j9-fleet-capabilities__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(50px, 6vw, 80px);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.j9-fleet-capability {
    position: relative;
    min-height: 310px;
    padding: 38px clamp(22px, 2.6vw, 36px) 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    transition: background-color 300ms ease;
}

.j9-fleet-capability:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.j9-fleet-capability::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--j9-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 350ms ease;
}

.j9-fleet-capability > span {
    display: block;
    margin-bottom: 58px;
    color: var(--j9-gold-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.j9-fleet-capability h3 {
    margin: 0;
    color: var(--j9-white);
    font-size: clamp(21px, 1.8vw, 28px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.j9-fleet-capability p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.75;
}

/* Fleet readiness */
.j9-fleet-readiness {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(255, 255, 255, 0.94),
            transparent 28%
        ),
        linear-gradient(135deg, #e9f0f5, #f5f7f9);
}

.j9-fleet-readiness::before {
    position: absolute;
    right: -120px;
    bottom: -170px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(16, 34, 61, 0.06);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(16, 34, 61, 0.018);
    content: "";
    pointer-events: none;
}

.j9-fleet-readiness__heading {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.j9-fleet-readiness__heading .j9-eyebrow {
    margin-bottom: 20px;
}

.j9-fleet-readiness__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(390px, 0.96fr)
        minmax(0, 1.04fr);
    align-items: stretch;
    gap: clamp(45px, 6vw, 90px);
    margin-top: clamp(52px, 7vw, 88px);
}

.j9-fleet-readiness__visual {
    position: relative;
    display: flex;
    min-height: 430px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(28, 87, 131, 0.72),
            transparent 52%
        ),
        linear-gradient(135deg, #031329, #082847);
}

.j9-fleet-readiness__visual::before {
    position: absolute;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(255, 255, 255, 0.025),
        0 0 0 90px rgba(255, 255, 255, 0.018);
    content: "";
}

.j9-fleet-readiness__visual span {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 24px;
    width: 68px;
    height: 68px;
    border-right: 1px solid var(--j9-gold);
    border-bottom: 1px solid var(--j9-gold);
}

.j9-fleet-readiness__visual img {
    position: relative;
    z-index: 1;
    display: block;
    width: 116%;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.3));
}

.j9-fleet-readiness__list {
    border-top: 1px solid rgba(16, 34, 61, 0.14);
}

.j9-fleet-readiness__item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 24px;
    padding: 31px 0;
    border-bottom: 1px solid rgba(16, 34, 61, 0.14);
}

.j9-fleet-readiness__item > span {
    padding-top: 5px;
    color: var(--j9-gold-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.j9-fleet-readiness__item h3 {
    margin: 0;
    color: var(--j9-ink);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.j9-fleet-readiness__item p {
    margin: 14px 0 0;
    color: rgba(16, 34, 61, 0.66);
    font-size: 14px;
    line-height: 1.75;
}

/* Fleet details gallery */
.j9-fleet-gallery {
    overflow: hidden;
    background: var(--j9-sand);
}

.j9-fleet-gallery__heading {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.j9-fleet-gallery__heading .j9-eyebrow {
    margin-bottom: 20px;
}

.j9-fleet-gallery__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: clamp(52px, 7vw, 88px);
}

.j9-fleet-gallery__item {
    padding: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 34, 61, 0.1);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 58px rgba(20, 42, 69, 0.075);
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease,
        translate 300ms ease;
}

.j9-fleet-gallery__image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid rgba(16, 34, 61, 0.09);
    background:
        linear-gradient(
            145deg,
            rgba(225, 232, 237, 0.88),
            rgba(255, 255, 255, 0.98)
        );
}

.j9-fleet-gallery__image::after {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    border-top: 1px solid var(--j9-gold);
    border-right: 1px solid var(--j9-gold);
    content: "";
    pointer-events: none;
}

.j9-fleet-gallery__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.j9-fleet-gallery__item figcaption {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 28px 32px 31px;
}

.j9-fleet-gallery__item figcaption span {
    color: var(--j9-gold-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.j9-fleet-gallery__item h3 {
    margin: 0;
    color: var(--j9-ink);
    font-size: clamp(21px, 2vw, 29px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* Fleet final visual */
.j9-fleet-signature {
    display: flex;
    min-height: 580px;
    align-items: center;
    overflow: hidden;
    color: var(--j9-white);
    background: var(--j9-navy-deep);
}

.j9-fleet-signature__image,
.j9-fleet-signature__overlay {
    position: absolute;
    inset: 0;
}

.j9-fleet-signature__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.88) contrast(1.05);
}

.j9-fleet-signature__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 16, 36, 0.97) 0%,
            rgba(3, 16, 36, 0.82) 50%,
            rgba(3, 16, 36, 0.48) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3, 16, 36, 0.42),
            transparent 48%
        );
}

.j9-fleet-signature__content {
    position: relative;
    z-index: 1;
    max-width: 880px;
    padding-top: clamp(105px, 10vw, 150px);
    padding-bottom: clamp(105px, 10vw, 150px);
}

.j9-fleet-signature__content .j9-eyebrow {
    margin-bottom: 20px;
}

.j9-fleet-signature__content > p:last-child {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

/* Ripple typography isolation for Fleet page */
.j9-page .j9-fleet-page-overview h2,
.j9-page .j9-fleet-readiness h2,
.j9-page .j9-fleet-readiness__item h3,
.j9-page .j9-fleet-gallery h2,
.j9-page .j9-fleet-gallery__item h3 {
    color: var(--j9-ink);
}

.j9-page .j9-fleet-capabilities h2,
.j9-page .j9-fleet-capability h3,
.j9-page .j9-fleet-signature h2 {
    color: var(--j9-white);
}

.j9-page .j9-fleet-page-overview__copy p.j9-lead {
    color: var(--j9-ink);
}

.j9-page .j9-fleet-page-overview__copy > p:last-child,
.j9-page .j9-fleet-readiness__item p {
    color: rgba(16, 34, 61, 0.68);
}

.j9-page .j9-fleet-capabilities__heading > p {
    color: rgba(255, 255, 255, 0.68);
}

.j9-page .j9-fleet-capability p {
    color: rgba(255, 255, 255, 0.65);
}

.j9-page .j9-fleet-signature__content > p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

@media (hover: hover) {
    .j9-fleet-capability:hover {
        background: rgba(255, 255, 255, 0.035);
    }

    .j9-fleet-capability:hover::after {
        transform: scaleX(1);
    }

    .j9-fleet-gallery__item:hover {
        border-color: rgba(244, 189, 8, 0.42);
        box-shadow: 0 30px 74px rgba(20, 42, 69, 0.14);
        translate: 0 -4px;
    }

    .j9-fleet-gallery__item:hover img {
        transform: scale(1.035);
    }
}

@media (max-width: 1100px) {
    .j9-fleet-page-overview__grid {
        grid-template-columns:
            minmax(0, 0.94fr)
            minmax(390px, 1.06fr);
        gap: 50px;
    }

    .j9-fleet-capabilities__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .j9-fleet-capability:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

    .j9-fleet-capability:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .j9-fleet-readiness__layout {
        grid-template-columns:
            minmax(340px, 0.9fr)
            minmax(0, 1.1fr);
        gap: 50px;
    }
}

@media (max-width: 850px) {
    .j9-fleet-page-overview__grid,
    .j9-fleet-capabilities__heading,
    .j9-fleet-readiness__layout {
        grid-template-columns: 1fr;
    }

    .j9-fleet-page-overview__copy {
        max-width: 680px;
    }

    .j9-fleet-page-overview__visual {
        min-height: 320px;
    }

    .j9-fleet-capabilities__heading {
        align-items: start;
        gap: 24px;
    }

    .j9-fleet-capabilities__heading > p {
        max-width: 640px;
    }

    .j9-fleet-readiness__visual {
        min-height: 390px;
    }

    .j9-fleet-readiness__list {
        max-width: 720px;
    }

    .j9-fleet-signature__overlay {
        background: rgba(3, 16, 36, 0.82);
    }
}

@media (max-width: 767px) {
    .j9-fleet-page-overview h2,
    .j9-fleet-capabilities h2,
    .j9-fleet-readiness h2,
    .j9-fleet-gallery h2,
    .j9-fleet-signature h2 {
        font-size: clamp(33px, 9vw, 46px);
    }

    .j9-fleet-page-overview__grid {
        gap: 38px;
    }

    .j9-fleet-page-overview__visual {
        min-height: 255px;
    }

    .j9-fleet-page-overview__visual span {
        width: 58px;
        height: 58px;
    }

    .j9-fleet-capabilities__grid {
        grid-template-columns: 1fr;
    }

    .j9-fleet-capability {
        min-height: 220px;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .j9-fleet-capability:nth-child(3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .j9-fleet-capability:last-child {
        border-bottom: 0;
    }

    .j9-fleet-capability > span {
        margin-bottom: 34px;
    }

    .j9-fleet-readiness__visual {
        min-height: 320px;
    }

    .j9-fleet-readiness__visual::before {
        width: 260px;
        height: 260px;
    }

    .j9-fleet-readiness__item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 16px;
        padding: 27px 0;
    }

    .j9-fleet-gallery__grid {
        gap: 20px;
    }

    .j9-fleet-gallery__item figcaption {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 24px;
    }

    .j9-fleet-signature {
        min-height: 520px;
    }

    .j9-fleet-signature__content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 560px) {
    .j9-fleet-gallery__grid {
        grid-template-columns: 1fr;
    }

    .j9-fleet-page-overview__visual {
        min-height: 220px;
    }

    .j9-fleet-page-overview__visual img {
        width: 128%;
    }

    .j9-fleet-readiness__visual {
        min-height: 270px;
    }

    .j9-fleet-readiness__visual img {
        width: 125%;
    }

    .j9-fleet-gallery__image::after {
        top: 16px;
        right: 16px;
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    .j9-fleet-signature {
        min-height: 480px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .j9-fleet-capability,
    .j9-fleet-capability::after,
    .j9-fleet-gallery__item,
    .j9-fleet-gallery__image img {
        transition: none !important;
    }
}

/* J9 Fly contact page */
.j9-contact-intro {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(13, 45, 85, 0.08),
            transparent 28%
        ),
        var(--j9-sand);
}

.j9-contact-intro::before {
    position: absolute;
    top: -190px;
    right: -150px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(16, 34, 61, 0.08);
    border-radius: 50%;
    box-shadow:
        0 0 0 48px rgba(16, 34, 61, 0.025),
        0 0 0 96px rgba(16, 34, 61, 0.018);
    content: "";
    pointer-events: none;
}

.j9-contact-intro__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 0.86fr)
        minmax(0, 1.14fr);
    align-items: start;
    gap: clamp(54px, 7vw, 110px);
}

.j9-contact-intro__heading {
    max-width: 560px;
}

.j9-contact-intro h2,
.j9-contact-main h2,
.j9-contact-process h2 {
    margin: 0;
    font-size: clamp(38px, 4.1vw, 62px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.j9-contact-intro h2,
.j9-contact-process h2 {
    color: var(--j9-ink);
}

.j9-contact-intro__copy {
    max-width: 670px;
    padding-top: 28px;
}

.j9-contact-intro__copy p {
    margin: 0;
    color: rgba(16, 34, 61, 0.76);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.78;
}

.j9-contact-intro__copy p + p {
    margin-top: 24px;
}

.j9-contact-main {
    overflow: hidden;
    color: var(--j9-white);
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(13, 45, 85, 0.94),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            var(--j9-navy-deep) 0%,
            var(--j9-navy) 58%,
            #082445 100%
        );
}

.j9-contact-main::before {
    position: absolute;
    top: -210px;
    left: -190px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 50%;
    box-shadow:
        0 0 0 64px rgba(255, 255, 255, 0.02),
        0 0 0 128px rgba(255, 255, 255, 0.012);
    content: "";
    pointer-events: none;
}

.j9-contact-main::after {
    position: absolute;
    right: -160px;
    bottom: -210px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(244, 189, 8, 0.14);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.j9-contact-main__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(460px, 1.08fr);
    align-items: start;
    gap: clamp(54px, 6.5vw, 104px);
}

.j9-contact-main__information {
    min-width: 0;
    padding-top: 18px;
}

.j9-contact-main__heading {
    max-width: 650px;
}

.j9-contact-main h2 {
    color: var(--j9-white);
}

.j9-contact-main__heading > p:last-child {
    max-width: 620px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.76;
}

.j9-contact-main__email {
    margin-top: 46px;
    padding: 28px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.j9-contact-main__email span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.j9-contact-main__email a {
    display: inline-block;
    color: var(--j9-white) !important;
    font-size: clamp(22px, 2.6vw, 38px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.2;
    text-decoration: none !important;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.j9-contact-main__email a:hover {
    color: var(--j9-gold) !important;
    transform: translateX(5px);
}

.j9-contact-brief {
    margin-top: 54px;
}

.j9-contact-brief h3 {
    max-width: 540px;
    margin: 0;
    color: var(--j9-white);
    font-size: clamp(25px, 2.3vw, 34px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.j9-contact-brief__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.j9-contact-brief__item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 15px;
    min-height: 172px;
    padding: 27px 24px 27px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.j9-contact-brief__item:nth-child(odd) {
    padding-right: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.j9-contact-brief__item:nth-child(even) {
    padding-left: 28px;
}

.j9-contact-brief__item:hover {
    background: rgba(255, 255, 255, 0.025);
    transform: translateY(-2px);
}

.j9-contact-brief__item > span {
    color: var(--j9-gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
}

.j9-contact-brief__item h4 {
    margin: 0;
    color: var(--j9-white);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.j9-contact-brief__item p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.65;
}

.j9-contact-form-panel {
    position: relative;
    min-width: 0;
    padding: clamp(36px, 4vw, 56px);
    border-top: 4px solid var(--j9-gold);
    background: var(--j9-white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    color: var(--j9-ink);
}

.j9-contact-form-panel::before {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-top: 1px solid rgba(16, 34, 61, 0.16);
    border-right: 1px solid rgba(16, 34, 61, 0.16);
    content: "";
    pointer-events: none;
}

.j9-contact-form-panel__heading {
    max-width: 560px;
    margin-bottom: 38px;
}

.j9-contact-form-panel__heading h2 {
    color: var(--j9-ink);
    font-size: clamp(34px, 3.25vw, 49px);
}

.j9-contact-form-panel__heading > p:last-child {
    margin: 22px 0 0;
    color: rgba(16, 34, 61, 0.66);
    font-size: 14px;
    line-height: 1.7;
}

.j9-contact-form-panel .contact-form {
    margin: 0;
}

.j9-contact-form-panel .contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 0 0 22px;
}

/* J9 Fly contact form alignment fix */
.j9-contact-form-panel .contact-form-row::before,
.j9-contact-form-panel .contact-form-row::after {
    display: none;
    content: none;
}

.j9-contact-form-panel .contact-column-6,
.j9-contact-form-panel .contact-column-12 {
    width: auto;
    max-width: none;
    padding: 0;
}

.j9-contact-form-panel .contact-field-phone_wrapper {
    grid-column: 1 / -1;
}

.j9-contact-form-panel .contact-form-group {
    margin: 0 0 22px;
}

.j9-contact-form-panel
    .contact-form-row
    .contact-form-group {
    margin-bottom: 0;
}

.j9-contact-form-panel .form-label {
    display: block;
    margin: 0 0 9px;
    color: var(--j9-ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.35;
    text-transform: uppercase;
}

.j9-contact-form-panel .form-label.required::after {
    color: #b78600;
}

.j9-contact-form-panel
    input.contact-form-input:not(
        [type="checkbox"]
    ):not([type="hidden"]),
.j9-contact-form-panel textarea.contact-form-input {
    display: block;
    width: 100%;
    min-height: 58px;
    margin: 0;
    border: 1px solid rgba(16, 34, 61, 0.2);
    border-radius: 0;
    outline: 0;
    background: #f7f8fa;
    box-shadow: none;
    color: var(--j9-ink);
    font-family: "Montserrat", "Arial", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.j9-contact-form-panel
    input.contact-form-input:not(
        [type="checkbox"]
    ):not([type="hidden"]) {
    padding: 0 18px;
}

.j9-contact-form-panel textarea.contact-form-input {
    min-height: 150px;
    padding: 17px 18px;
    resize: vertical;
}

.j9-contact-form-panel
    input.contact-form-input::placeholder,
.j9-contact-form-panel
    textarea.contact-form-input::placeholder {
    color: rgba(16, 34, 61, 0.42);
    opacity: 1;
}

.j9-contact-form-panel
    input.contact-form-input:focus,
.j9-contact-form-panel
    textarea.contact-form-input:focus {
    border-color: var(--j9-gold-soft);
    background: var(--j9-white);
    box-shadow: 0 0 0 3px rgba(244, 189, 8, 0.13);
}

.j9-contact-form-panel .iti {
    display: block;
    width: 100%;
}

.j9-contact-form-panel
    .iti
    input.contact-form-input {
    padding-left: 54px;
}

.j9-contact-form-panel .form-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    color: rgba(16, 34, 61, 0.67);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.55;
    text-transform: none;
    cursor: pointer;
}

.j9-contact-form-panel
    input.contact-form-input[type="checkbox"] {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 1px 0 0;
    border: 1px solid rgba(16, 34, 61, 0.34);
    border-radius: 0;
    accent-color: var(--j9-gold-soft);
}

.j9-contact-form-panel .form-check-label a {
    color: var(--j9-blue) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.j9-contact-form-panel form.contact-form .contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 58px;
    padding: 15px 30px;
    border: 1px solid var(--j9-gold);
    border-radius: 0;
    background: var(--j9-gold);
    box-shadow: none;
    color: var(--j9-navy-deep);
    font-family: "Montserrat", "Arial", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.3;
    text-transform: uppercase;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.j9-contact-form-panel form.contact-form .contact-button:hover,
.j9-contact-form-panel form.contact-form .contact-button:focus-visible {
    border-color: var(--j9-navy);
    background: var(--j9-navy);
    color: var(--j9-white);
    transform: translateY(-2px);
}

.j9-contact-form-panel form.contact-form .contact-button:focus-visible {
    outline: 3px solid rgba(244, 189, 8, 0.3);
    outline-offset: 3px;
}

.j9-contact-form-panel .text-danger,
.j9-contact-form-panel .invalid-feedback {
    display: block;
    margin-top: 7px;
    color: #a42c2c;
    font-size: 11px;
    line-height: 1.45;
}

.j9-contact-form-panel .contact-message {
    padding: 14px 16px;
    border: 1px solid rgba(16, 34, 61, 0.16);
    font-size: 13px;
    line-height: 1.55;
}

.j9-contact-form-panel .contact-success-message {
    border-color: rgba(35, 116, 70, 0.35);
    background: rgba(35, 116, 70, 0.08);
    color: #195c37;
}

.j9-contact-form-panel .contact-error-message {
    border-color: rgba(164, 44, 44, 0.35);
    background: rgba(164, 44, 44, 0.08);
    color: #8a2424;
}

.j9-contact-process {
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            var(--j9-white) 0%,
            var(--j9-mist) 100%
        );
}

.j9-contact-process::before {
    position: absolute;
    right: -200px;
    bottom: -280px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(16, 34, 61, 0.075);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.j9-contact-process .j9-container {
    position: relative;
    z-index: 1;
}

.j9-contact-process__heading {
    display: grid;
    grid-template-columns:
        minmax(220px, 0.72fr)
        minmax(0, 1.28fr);
    align-items: end;
    gap: 54px;
    margin-bottom: 58px;
}

.j9-contact-process__heading .j9-eyebrow {
    margin-bottom: 8px;
}

.j9-contact-process__heading h2 {
    max-width: 720px;
}

.j9-contact-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(16, 34, 61, 0.2);
    border-bottom: 1px solid rgba(16, 34, 61, 0.2);
}

.j9-contact-process__step {
    min-height: 270px;
    padding: 42px clamp(28px, 3vw, 48px);
    border-left: 1px solid rgba(16, 34, 61, 0.2);
    transition:
        background-color 180ms ease,
        transform 180ms ease;
}

.j9-contact-process__step:last-child {
    border-right: 1px solid rgba(16, 34, 61, 0.2);
}

.j9-contact-process__step:hover {
    background: rgba(255, 255, 255, 0.58);
    transform: translateY(-3px);
}

.j9-contact-process__step > span {
    display: block;
    margin-bottom: 45px;
    color: var(--j9-gold-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.4;
}

.j9-contact-process__step h3 {
    margin: 0;
    color: var(--j9-ink);
    font-size: clamp(20px, 1.8vw, 27px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.j9-contact-process__step p {
    margin: 17px 0 0;
    color: rgba(16, 34, 61, 0.66);
    font-size: 14px;
    line-height: 1.68;
}

@media (max-width: 1100px) {
    .j9-contact-main__grid {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(420px, 1.1fr);
        gap: 50px;
    }

    .j9-contact-brief__list {
        grid-template-columns: 1fr;
    }

    .j9-contact-brief__item:nth-child(odd) {
        padding-right: 0;
        border-right: 0;
    }

    .j9-contact-brief__item:nth-child(even) {
        padding-left: 0;
    }

    .j9-contact-brief__item {
        min-height: 0;
    }
}

@media (max-width: 900px) {
    .j9-contact-intro__grid,
    .j9-contact-main__grid,
    .j9-contact-process__heading {
        grid-template-columns: 1fr;
    }

    .j9-contact-intro__copy {
        max-width: 700px;
        padding-top: 0;
    }

    .j9-contact-main__information {
        max-width: 720px;
        padding-top: 0;
    }

    .j9-contact-form-panel {
        max-width: 760px;
    }

    .j9-contact-process__heading {
        align-items: start;
        gap: 20px;
    }

    .j9-contact-process__grid {
        grid-template-columns: 1fr;
    }

    .j9-contact-process__step {
        min-height: 0;
        border-right: 1px solid rgba(16, 34, 61, 0.2);
        border-bottom: 1px solid rgba(16, 34, 61, 0.2);
    }

    .j9-contact-process__step:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 767px) {
    .j9-contact-intro h2,
    .j9-contact-main h2,
    .j9-contact-process h2 {
        font-size: clamp(33px, 9vw, 46px);
    }

    .j9-contact-main__email {
        margin-top: 38px;
    }

    .j9-contact-brief {
        margin-top: 44px;
    }

    .j9-contact-form-panel {
        padding: 34px 26px;
    }

    .j9-contact-form-panel::before {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
    }

    .j9-contact-form-panel__heading {
        margin-bottom: 30px;
    }

    .j9-contact-form-panel__heading h2 {
        padding-right: 20px;
    }

    .j9-contact-form-panel .contact-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .j9-contact-form-panel .contact-field-phone_wrapper {
        grid-column: auto;
    }

    .j9-contact-form-panel form.contact-form .contact-button {
        width: 100%;
    }

    .j9-contact-process__heading {
        margin-bottom: 38px;
    }

    .j9-contact-process__step {
        padding: 32px 26px;
    }

    .j9-contact-process__step > span {
        margin-bottom: 28px;
    }
}

@media (max-width: 520px) {
    .j9-contact-intro__grid,
    .j9-contact-main__grid {
        gap: 38px;
    }

    .j9-contact-main__email a {
        font-size: 21px;
        overflow-wrap: anywhere;
    }

    .j9-contact-brief__item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
    }

    .j9-contact-form-panel {
        padding-right: 20px;
        padding-left: 20px;
    }

    .j9-contact-form-panel
        input.contact-form-input:not(
            [type="checkbox"]
        ):not([type="hidden"]) {
        padding-right: 14px;
        padding-left: 14px;
    }

    .j9-contact-form-panel
        .iti
        input.contact-form-input {
        padding-left: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .j9-contact-main__email a,
    .j9-contact-brief__item,
    .j9-contact-form-panel input,
    .j9-contact-form-panel textarea,
    .j9-contact-form-panel form.contact-form .contact-button,
    .j9-contact-process__step {
        transition: none !important;
    }
}

/* J9 Fly careers page */
.j9-careers-intro,
.j9-careers-directions,
.j9-careers-application {
    position: relative;
    overflow: hidden;
}

.j9-careers-intro {
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(13, 45, 85, 0.09),
            transparent 31%
        ),
        var(--j9-sand);
}

.j9-careers-intro__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(54px, 7vw, 108px);
}

.j9-careers-intro__copy {
    position: relative;
    z-index: 2;
}

.j9-careers-intro__copy h2,
.j9-careers-directions h2,
.j9-careers-application h2,
.j9-careers-closing h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.j9-careers-intro__copy .j9-lead {
    margin: 34px 0 0;
    color: var(--j9-ink);
    font-size: clamp(18px, 1.6vw, 23px);
    font-weight: 500;
    line-height: 1.65;
}

.j9-careers-intro__copy > p:last-child {
    margin: 24px 0 0;
    color: rgba(16, 34, 61, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.j9-careers-intro__visual {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 410px;
}

.j9-careers-intro__visual::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(38vw, 480px);
    height: min(38vw, 480px);
    border: 1px solid rgba(211, 166, 47, 0.34);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.j9-careers-intro__visual span {
    position: absolute;
    top: 12%;
    right: 8%;
    width: 76px;
    height: 76px;
    border-top: 2px solid var(--j9-gold);
    border-right: 2px solid var(--j9-gold);
}

.j9-careers-intro__visual img {
    position: relative;
    z-index: 1;
    width: 118%;
    max-width: none;
    height: auto;
    margin-left: -9%;
    object-fit: contain;
    filter: drop-shadow(0 24px 30px rgba(3, 16, 36, 0.18));
}

.j9-careers-directions {
    color: var(--j9-white);
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(244, 189, 8, 0.11),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--j9-navy-deep),
            var(--j9-navy)
        );
}

.j9-careers-directions__heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(340px, 0.8fr);
    align-items: end;
    gap: clamp(48px, 7vw, 110px);
    margin-bottom: clamp(54px, 7vw, 90px);
}

.j9-careers-directions__heading .j9-eyebrow,
.j9-careers-application .j9-eyebrow,
.j9-careers-closing .j9-eyebrow {
    color: var(--j9-gold);
}

.j9-careers-directions__heading > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.8;
}

.j9-careers-directions__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.j9-careers-direction {
    position: relative;
    min-height: 280px;
    padding: 38px 30px 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    transition:
        background-color 220ms ease,
        transform 220ms ease;
}

.j9-careers-direction:last-child {
    border-right: 0;
}

.j9-careers-direction::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--j9-gold);
    content: "";
    transition: width 220ms ease;
}

.j9-careers-direction:hover {
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-5px);
}

.j9-careers-direction:hover::after {
    width: 100%;
}

.j9-careers-direction > span {
    display: block;
    margin-bottom: 80px;
    color: var(--j9-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.j9-careers-direction h3 {
    max-width: 250px;
    margin: 0;
    color: var(--j9-white);
    font-size: clamp(21px, 2vw, 29px);
    font-weight: 650;
    letter-spacing: -0.025em;
    line-height: 1.24;
}

.j9-careers-application {
    color: var(--j9-white);
    background:
        radial-gradient(
            circle at 0 8%,
            rgba(244, 189, 8, 0.1),
            transparent 30%
        ),
        var(--j9-navy-deep);
}

.j9-careers-application__grid {
    display: grid;
    grid-template-columns:
        minmax(360px, 0.92fr)
        minmax(480px, 1.08fr);
    align-items: start;
    gap: clamp(48px, 7vw, 96px);
}

.j9-careers-application__information {
    position: sticky;
    top: 120px;
}

.j9-careers-application__heading > p:last-child {
    max-width: 620px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.8;
}

.j9-careers-application__visual {
    position: relative;
    min-height: 285px;
    margin-top: 54px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.j9-careers-application__visual::after {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 62px;
    height: 62px;
    border-top: 2px solid var(--j9-gold);
    border-right: 2px solid var(--j9-gold);
    content: "";
}

.j9-careers-application__visual img {
    width: 100%;
    height: 100%;
    min-height: 285px;
    object-fit: cover;
    transition: transform 500ms ease;
}

.j9-careers-application__visual:hover img {
    transform: scale(1.035);
}

.j9-careers-form-panel {
    position: relative;
    padding: clamp(36px, 5vw, 68px);
    border-top: 4px solid var(--j9-gold);
    background: var(--j9-white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    color: var(--j9-ink);
}

.j9-careers-form-panel__heading {
    margin-bottom: 40px;
}

.j9-careers-form-panel__heading h2 {
    color: var(--j9-ink);
    font-size: clamp(34px, 4vw, 54px);
}

.j9-careers-form-panel__heading > p:last-child {
    margin: 22px 0 0;
    color: rgba(16, 34, 61, 0.68);
    font-size: 15px;
    line-height: 1.75;
}

.j9-careers-form {
    display: grid;
    gap: 22px;
}

.j9-careers-form__honeypot {
    position: fixed !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.j9-careers-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.j9-careers-form__field {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.j9-careers-form__field label {
    color: var(--j9-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.j9-careers-form__field label span,
.j9-careers-form__consent + .j9-careers-form__error {
    color: #b3261e;
}

.j9-careers-form input:not([type="checkbox"]),
.j9-careers-form select,
.j9-careers-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #cfd6e1;
    border-radius: 0;
    background: #f7f8fa;
    box-shadow: none;
    color: var(--j9-ink);
    font-family: "Montserrat", "Arial", sans-serif;
    font-size: 15px;
    line-height: 1.45;
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.j9-careers-form input:not([type="checkbox"]),
.j9-careers-form select {
    min-height: 62px;
    padding: 15px 18px;
}

.j9-careers-form textarea {
    min-height: 158px;
    padding: 17px 18px;
    resize: vertical;
}

.j9-careers-form input::placeholder,
.j9-careers-form textarea::placeholder {
    color: rgba(16, 34, 61, 0.48);
}

.j9-careers-form input:not([type="checkbox"]):focus,
.j9-careers-form select:focus,
.j9-careers-form textarea:focus {
    border-color: var(--j9-gold-soft);
    outline: none;
    background: var(--j9-white);
    box-shadow: 0 0 0 3px rgba(244, 189, 8, 0.16);
}

.j9-careers-form input[type="file"] {
    min-height: 62px;
    padding: 0;
    cursor: pointer;
}

.j9-careers-form input[type="file"]::file-selector-button {
    min-height: 60px;
    margin-right: 16px;
    padding: 14px 20px;
    border: 0;
    border-right: 1px solid #cfd6e1;
    border-radius: 0;
    background: var(--j9-gold);
    color: var(--j9-navy-deep);
    font-family: "Montserrat", "Arial", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.j9-careers-form__help {
    color: rgba(16, 34, 61, 0.6);
    font-size: 12px;
    line-height: 1.5;
}

.j9-careers-form__consent {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    color: rgba(16, 34, 61, 0.75);
    font-size: 13px;
    line-height: 1.55;
    cursor: pointer;
}

.j9-careers-form__consent input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--j9-gold-soft);
}

.j9-careers-form__error {
    display: block;
    color: #a61b1b;
    font-size: 12px;
    line-height: 1.5;
}

.j9-careers-form__notice {
    margin: 0 0 28px;
    padding: 17px 18px;
    border: 1px solid;
    font-size: 14px;
    line-height: 1.55;
}

.j9-careers-form__notice--success {
    border-color: #58a66b;
    background: #e5f5e8;
    color: #205d2e;
}

.j9-careers-form__notice--error {
    border-color: #c75b55;
    background: #fae9e8;
    color: #8c211c;
}

.j9-careers-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 230px;
    min-height: 60px;
    padding: 15px 30px;
    border: 1px solid var(--j9-gold);
    border-radius: 0;
    background: var(--j9-gold);
    box-shadow: none;
    color: var(--j9-navy-deep);
    font-family: "Montserrat", "Arial", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.3;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.j9-careers-form__submit:hover,
.j9-careers-form__submit:focus-visible {
    border-color: var(--j9-navy);
    background: var(--j9-navy);
    color: var(--j9-white);
    transform: translateY(-2px);
}

.j9-careers-form__submit:focus-visible {
    outline: 3px solid rgba(244, 189, 8, 0.3);
    outline-offset: 3px;
}

.j9-careers-closing {
    position: relative;
    display: flex;
    min-height: 580px;
    overflow: hidden;
    color: var(--j9-white);
    background: var(--j9-navy-deep);
}

.j9-careers-closing__image,
.j9-careers-closing__overlay {
    position: absolute;
    inset: 0;
}

.j9-careers-closing__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.j9-careers-closing__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(3, 16, 36, 0.96) 0%,
            rgba(3, 16, 36, 0.78) 48%,
            rgba(3, 16, 36, 0.32) 100%
        );
}

.j9-careers-closing__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
    padding-top: 120px;
    padding-bottom: 120px;
}

.j9-careers-closing__content h2 {
    max-width: 680px;
}

.j9-careers-closing__content > p:last-child {
    max-width: 620px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.75;
}

@media (max-width: 1100px) {
    .j9-careers-intro__grid {
        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(360px, 1.05fr);
        gap: 50px;
    }

    .j9-careers-directions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .j9-careers-direction:nth-child(2n) {
        border-right: 0;
    }

    .j9-careers-direction:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .j9-careers-application__grid {
        grid-template-columns:
            minmax(320px, 0.85fr)
            minmax(440px, 1.15fr);
        gap: 50px;
    }
}

@media (max-width: 850px) {
    .j9-careers-intro__grid,
    .j9-careers-directions__heading,
    .j9-careers-application__grid {
        grid-template-columns: 1fr;
    }

    .j9-careers-intro__copy,
    .j9-careers-directions__heading > p,
    .j9-careers-application__heading {
        max-width: 680px;
    }

    .j9-careers-intro__visual {
        min-height: 330px;
    }

    .j9-careers-directions__heading {
        align-items: start;
        gap: 24px;
    }

    .j9-careers-application__information {
        position: static;
    }

    .j9-careers-application__visual {
        max-width: 680px;
    }

    .j9-careers-form-panel {
        max-width: 760px;
    }

    .j9-careers-closing__overlay {
        background: rgba(3, 16, 36, 0.82);
    }
}

@media (max-width: 767px) {
    .j9-careers-intro__copy h2,
    .j9-careers-directions h2,
    .j9-careers-application h2,
    .j9-careers-closing h2 {
        font-size: clamp(33px, 9vw, 46px);
    }

    .j9-careers-intro__grid {
        gap: 36px;
    }

    .j9-careers-intro__visual {
        min-height: 250px;
    }

    .j9-careers-intro__visual::before {
        width: 260px;
        height: 260px;
    }

    .j9-careers-intro__visual span {
        width: 56px;
        height: 56px;
    }

    .j9-careers-directions__grid {
        grid-template-columns: 1fr;
    }

    .j9-careers-direction,
    .j9-careers-direction:nth-child(2n) {
        min-height: 190px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .j9-careers-direction:last-child {
        border-bottom: 0;
    }

    .j9-careers-direction > span {
        margin-bottom: 44px;
    }

    .j9-careers-application__visual,
    .j9-careers-application__visual img {
        min-height: 230px;
    }

    .j9-careers-form__row {
        grid-template-columns: 1fr;
    }

    .j9-careers-closing {
        min-height: 520px;
    }

    .j9-careers-closing__content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 560px) {
    .j9-careers-intro__visual img {
        width: 128%;
        margin-left: -14%;
    }

    .j9-careers-form-panel {
        padding: 34px 20px;
    }

    .j9-careers-form input[type="file"] {
        padding: 12px;
    }

    .j9-careers-form input[type="file"]::file-selector-button {
        display: block;
        width: 100%;
        min-height: 48px;
        margin: 0 0 10px;
        border-right: 0;
    }

    .j9-careers-form__submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .j9-careers-closing {
        min-height: 480px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .j9-careers-direction,
    .j9-careers-direction::after,
    .j9-careers-application__visual img,
    .j9-careers-form input,
    .j9-careers-form select,
    .j9-careers-form textarea,
    .j9-careers-form__submit {
        transition: none !important;
    }
}
/* J9 Fly privacy policy page */
.j9-page:has(.j9-privacy-policy) {
    overflow: visible;
}

.j9-privacy-policy {
    position: relative;
    overflow: visible;
    padding: clamp(76px, 8vw, 132px) 0;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(244, 189, 8, 0.09),
            transparent 30%
        ),
        #f4f2ed;
    color: var(--j9-navy);
}

.j9-privacy-policy::before {
    position: absolute;
    top: 80px;
    right: 24px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(7, 32, 59, 0.09);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.j9-privacy-policy__intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(260px, 0.8fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: end;
    margin-bottom: clamp(48px, 6vw, 88px);
    padding: clamp(30px, 4vw, 58px);
    border-top: 3px solid var(--j9-gold);
    background: var(--j9-white);
    box-shadow: 0 26px 70px rgba(4, 25, 48, 0.08);
}

.j9-privacy-policy__intro-copy h2 {
    max-width: 760px;
    margin: 12px 0 20px;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.j9-privacy-policy__intro-copy > p:last-child {
    max-width: 760px;
    margin: 0;
    color: rgba(7, 32, 59, 0.72);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.75;
}

.j9-privacy-policy__meta {
    padding-left: clamp(22px, 3vw, 42px);
    border-left: 1px solid rgba(7, 32, 59, 0.15);
}

.j9-privacy-policy__meta p {
    margin: 0;
}

.j9-privacy-policy__meta-label {
    color: rgba(7, 32, 59, 0.55);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.j9-privacy-policy__meta-date {
    margin-top: 9px !important;
    font-size: clamp(19px, 2vw, 25px);
    font-weight: 700;
}

.j9-privacy-policy__domain {
    display: inline-flex;
    margin-top: 24px;
    color: var(--j9-navy);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration-color: var(--j9-gold);
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.j9-privacy-policy__principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: clamp(48px, 6vw, 86px);
    border-top: 1px solid rgba(7, 32, 59, 0.18);
    border-bottom: 1px solid rgba(7, 32, 59, 0.18);
}

.j9-privacy-policy__principle {
    position: relative;
    min-height: 150px;
    padding: 32px 30px 30px 58px;
}

.j9-privacy-policy__principle
    + .j9-privacy-policy__principle {
    border-left: 1px solid rgba(7, 32, 59, 0.18);
}

.j9-privacy-policy__principle span {
    position: absolute;
    top: 34px;
    left: 24px;
    color: var(--j9-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.j9-privacy-policy__principle strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.3;
}

.j9-privacy-policy__principle p {
    margin: 0;
    color: rgba(7, 32, 59, 0.68);
    font-size: 14px;
    line-height: 1.7;
}

.j9-privacy-policy__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(220px, 0.32fr)
        minmax(0, 1fr);
    gap: clamp(38px, 6vw, 96px);
    align-items: start;
}

.j9-privacy-policy__toc {
    position: sticky;
    top: 110px;
}

.j9-privacy-policy__toc-title {
    margin: 0 0 20px;
    color: var(--j9-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.j9-privacy-policy__toc ol {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(7, 32, 59, 0.2);
    list-style: none !important;
}

.j9-privacy-policy__toc li {
    border-bottom: 1px solid rgba(7, 32, 59, 0.13);
    list-style: none !important;
}

.j9-privacy-policy__toc li::marker {
    content: "";
}

.j9-privacy-policy__toc a {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    padding: 13px 0;
    color: rgba(7, 32, 59, 0.72);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
    transition:
        color 160ms ease,
        padding-left 160ms ease;
}

.j9-privacy-policy__toc a:hover,
.j9-privacy-policy__toc a:focus-visible {
    padding-left: 5px;
    color: var(--j9-navy);
}

.j9-privacy-policy__toc-number {
    color: var(--j9-gold);
    font-size: 10px;
    letter-spacing: 0.08em;
}

.j9-privacy-policy__article {
    padding: clamp(30px, 5vw, 72px);
    background: var(--j9-white);
    box-shadow: 0 26px 70px rgba(4, 25, 48, 0.07);
}

.j9-privacy-policy__section {
    scroll-margin-top: 125px;
}

.j9-privacy-policy__section
    + .j9-privacy-policy__section {
    margin-top: clamp(42px, 5vw, 68px);
    padding-top: clamp(42px, 5vw, 68px);
    border-top: 1px solid rgba(7, 32, 59, 0.13);
}

.j9-privacy-policy__section-heading {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    margin-bottom: 22px;
}

.j9-privacy-policy__section-number {
    padding-top: 8px;
    color: var(--j9-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.j9-privacy-policy__section h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.j9-privacy-policy__section p,
.j9-privacy-policy__section li {
    color: rgba(7, 32, 59, 0.73);
    font-size: 16px;
    line-height: 1.82;
}

.j9-privacy-policy__section p {
    margin: 0 0 18px;
}

.j9-privacy-policy__section p:last-child {
    margin-bottom: 0;
}

.j9-privacy-policy__section ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 22px;
    padding-left: 23px;
}

.j9-privacy-policy__section li::marker {
    color: var(--j9-gold);
}

.j9-privacy-policy__section a {
    color: var(--j9-navy);
    font-weight: 750;
    text-decoration-color: var(--j9-gold);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.j9-privacy-policy__notice {
    margin: 26px 0;
    padding: 23px 25px;
    border-left: 3px solid var(--j9-gold);
    background: rgba(244, 189, 8, 0.1);
}

.j9-privacy-policy__notice strong {
    display: block;
    margin-bottom: 7px;
    color: var(--j9-navy);
}

.j9-privacy-policy__notice p {
    margin: 0;
}

.j9-privacy-policy a:focus-visible {
    outline: 3px solid rgba(244, 189, 8, 0.38);
    outline-offset: 4px;
}

@media (max-width: 980px) {
    .j9-privacy-policy__intro {
        grid-template-columns: 1fr;
    }

    .j9-privacy-policy__meta {
        padding-top: 24px;
        padding-left: 0;
        border-top: 1px solid rgba(7, 32, 59, 0.15);
        border-left: 0;
    }

    .j9-privacy-policy__layout {
        grid-template-columns: 1fr;
    }

    .j9-privacy-policy__toc {
        position: static;
        padding: 26px;
        background: var(--j9-white);
    }

    .j9-privacy-policy__toc ol {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 28px;
    }
}

@media (max-width: 680px) {
    .j9-privacy-policy {
        padding: 58px 0 72px;
    }

    .j9-privacy-policy__intro {
        margin-bottom: 38px;
        padding: 27px 22px 30px;
    }

    .j9-privacy-policy__principles {
        grid-template-columns: 1fr;
        margin-bottom: 38px;
    }

    .j9-privacy-policy__principle {
        min-height: 0;
        padding: 24px 20px 24px 54px;
    }

    .j9-privacy-policy__principle
        + .j9-privacy-policy__principle {
        border-top: 1px solid rgba(7, 32, 59, 0.18);
        border-left: 0;
    }

    .j9-privacy-policy__principle span {
        top: 27px;
        left: 20px;
    }

    .j9-privacy-policy__toc {
        padding: 23px 21px;
    }

    .j9-privacy-policy__toc ol {
        grid-template-columns: 1fr;
    }

    .j9-privacy-policy__article {
        padding: 32px 22px 42px;
    }

    .j9-privacy-policy__section-heading {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 8px;
    }

    .j9-privacy-policy__section p,
    .j9-privacy-policy__section li {
        font-size: 15px;
        line-height: 1.75;
    }
}

@media (prefers-reduced-motion: reduce) {
    .j9-privacy-policy__toc a {
        transition: none;
    }
}

/* ==========================================================================
   J9 BLOG START
   ========================================================================== */

.j9-blog-page {
    width: 100%;
    background: #f4f6f8;
    overflow: hidden;
}

.j9-blog-index {
    position: relative;
    padding: clamp(76px, 8vw, 124px) 0 clamp(84px, 9vw, 140px);
    background: linear-gradient(
        180deg,
        #f4f6f8 0%,
        #ffffff 100%
    );
}

.j9-blog-index__header {
    width: min(820px, 100%);
    margin: 0 0 clamp(48px, 6vw, 82px);
}

.j9-blog-index__title {
    max-width: 820px;
    margin: 15px 0 0;
    color: #08182f;
    font-size: clamp(36px, 4.1vw, 64px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.j9-blog-index__lead {
    max-width: 690px;
    margin: 25px 0 0;
    color: rgba(8, 24, 47, 0.68);
    font-size: clamp(16px, 1.25vw, 19px);
    font-weight: 400;
    line-height: 1.7;
}

.j9-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 2.5vw, 38px);
}

.j9-blog-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(8, 24, 47, 0.09);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.j9-blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(8, 24, 47, 0.16);
    box-shadow: 0 28px 70px rgba(7, 22, 45, 0.11);
}

.j9-blog-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #07162d;
}

.j9-blog-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(.2, .7, .2, 1);
}

.j9-blog-card:hover .j9-blog-card__media img {
    transform: scale(1.045);
}

.j9-blog-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(5, 17, 37, 0.02) 35%,
        rgba(5, 17, 37, 0.34) 100%
    );
}

.j9-blog-card__media-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(30px, 3vw, 48px);
    letter-spacing: 0.12em;
}

.j9-blog-card__media-placeholder span {
    font-weight: 300;
}

.j9-blog-card__media-placeholder strong {
    font-weight: 700;
}

.j9-blog-card__media-index {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 17px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.j9-blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: clamp(25px, 2.3vw, 35px);
}

.j9-blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    color: rgba(8, 24, 47, 0.48);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.j9-blog-card__meta > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #08182f;
}

.j9-blog-card__meta > span:first-child::before {
    width: 19px;
    height: 2px;
    content: "";
    background: #e21b35;
}

.j9-blog-card__title {
    margin: 0;
    color: #08182f;
    font-size: clamp(23px, 2vw, 31px);
    font-weight: 600;
    line-height: 1.17;
    letter-spacing: -0.025em;
}

.j9-blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.j9-blog-card__excerpt {
    margin: 18px 0 0;
    color: rgba(8, 24, 47, 0.64);
    font-size: 15px;
    line-height: 1.7;
}

.j9-blog-card__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 15px;
    margin-top: auto;
    padding-top: 28px;
    color: #08182f;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.13em;
    text-decoration: none;
}

.j9-blog-card__link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: "";
    background: #f2c400;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
}

.j9-blog-card:hover .j9-blog-card__link::after {
    transform: scaleX(1);
}

.j9-blog-card__arrow {
    display: inline-block;
    font-size: 19px;
    font-weight: 400;
    line-height: 0.8;
    transition: transform 0.25s ease;
}

.j9-blog-card__link:hover .j9-blog-card__arrow {
    transform: translateX(5px);
}

/* Empty state */

.j9-blog-empty {
    position: relative;
    display: grid;
    min-height: 360px;
    grid-template-columns: 150px minmax(0, 1fr) 170px;
    align-items: center;
    overflow: hidden;
    padding: clamp(38px, 5vw, 74px);
    background:
        radial-gradient(
            circle at 88% 5%,
            rgba(255, 255, 255, 0.09),
            transparent 31%
        ),
        #07162d;
}

.j9-blog-empty::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 76px;
    height: 4px;
    content: "";
    background: #f2c400;
}

.j9-blog-empty__number {
    color: rgba(255, 255, 255, 0.14);
    font-size: clamp(72px, 8vw, 126px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.06em;
}

.j9-blog-empty__content {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.j9-blog-empty__eyebrow {
    margin: 0 0 17px;
    color: #f2c400;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.j9-blog-empty__content h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 3.5vw, 54px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.j9-blog-empty__content > p:last-child {
    max-width: 600px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.7;
}

.j9-blog-empty__mark {
    color: rgba(255, 255, 255, 0.045);
    font-size: clamp(90px, 11vw, 165px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.08em;
    text-align: right;
}

/* Pagination */

.j9-blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: clamp(50px, 6vw, 82px);
}

.j9-blog-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0;
}

.j9-blog-pagination .page-item .page-link {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(8, 24, 47, 0.12);
    border-radius: 0;
    background: #ffffff;
    color: #08182f;
    box-shadow: none;
    font-size: 13px;
    font-weight: 600;
}

.j9-blog-pagination .page-item.active .page-link,
.j9-blog-pagination .page-item .page-link:hover {
    border-color: #08182f;
    background: #08182f;
    color: #ffffff;
}

.j9-blog-pagination .page-item.disabled .page-link {
    opacity: 0.42;
}

@media (max-width: 1024px) {
    .j9-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .j9-blog-empty {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    .j9-blog-empty__mark {
        display: none;
    }
}

@media (max-width: 700px) {
    .j9-blog-index {
        padding-top: 64px;
        padding-bottom: 82px;
    }

    .j9-blog-index__header {
        margin-bottom: 39px;
    }

    .j9-blog-index__title {
        font-size: clamp(34px, 10vw, 46px);
    }

    .j9-blog-index__lead {
        margin-top: 19px;
    }

    .j9-blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .j9-blog-card__body {
        padding: 25px 22px 27px;
    }

    .j9-blog-card__title {
        font-size: 25px;
    }

    .j9-blog-empty {
        display: block;
        min-height: 0;
        padding: 45px 26px 50px;
    }

    .j9-blog-empty__number {
        margin-bottom: 38px;
        font-size: 70px;
    }

    .j9-blog-empty__content h3 {
        font-size: 35px;
    }
}

/* ==========================================================================
   J9 BLOG END
   ========================================================================== */

/* ==========================================================================
   J9 FLEET VIDEO BACKGROUND START
   ========================================================================== */

.j9-fleet__image .j9-fleet__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/*
 * Video is decorative. The existing image is used as the poster while
 * the MP4 loads or when playback has not started yet.
 */
.j9-fleet__video {
    pointer-events: none;
}

/* ==========================================================================
   J9 FLEET VIDEO BACKGROUND END
   ========================================================================== */

/* ==========================================================================
   J9 FLEET PAGE VIDEO START
   ========================================================================== */

/*
 * Overview video follows the exact geometry of the current aircraft image.
 * The image remains the poster/fallback.
 */
.j9-fleet-page-overview__visual .j9-fleet-page-overview__video {
    position: relative;
    z-index: 1;
    display: block;
    width: 122%;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(
        0 28px 32px rgba(16, 34, 61, 0.18)
    );
    pointer-events: none;
}

/*
 * Readiness video follows the current front-aircraft visual sizing.
 */
.j9-fleet-readiness__visual .j9-fleet-readiness__video {
    position: relative;
    z-index: 1;
    display: block;
    width: 116%;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(
        0 26px 30px rgba(0, 0, 0, 0.3)
    );
    pointer-events: none;
}

/*
 * Signature video is a true full-cover background.
 */
.j9-fleet-signature__image .j9-fleet-signature__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.88) contrast(1.05);
    pointer-events: none;
}

/* ==========================================================================
   J9 FLEET PAGE VIDEO END
   ========================================================================== */

/* ==========================================================================
   J9 SERVICES CARD VIDEO START
   ========================================================================== */

.j9-service-detail__image .j9-service-detail__video {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    transition:
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

/*
 * Keep the existing gold corner decoration above the video.
 */
.j9-service-detail__image::after {
    z-index: 2;
}

@media (hover: hover) {
    .j9-service-detail:hover .j9-service-detail__video {
        transform: scale(1.035);
    }
}

@media (max-width: 850px) {
    .j9-service-detail__image .j9-service-detail__video {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .j9-service-detail__image .j9-service-detail__video {
        min-height: 240px;
    }
}

@media (max-width: 480px) {
    .j9-service-detail__image .j9-service-detail__video {
        min-height: 205px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .j9-service-detail__image .j9-service-detail__video {
        transition: none !important;
    }
}

/* ==========================================================================
   J9 SERVICES CARD VIDEO END
   ========================================================================== */

/* ==========================================================================
   J9 HERO VIDEO BACKGROUND START
   ========================================================================== */

.j9-hero__background {
    overflow: hidden;
}

.j9-hero__background-video {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.j9-hero__background-video-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    background:
        linear-gradient(
            180deg,
            rgba(3, 15, 33, 0.58) 0%,
            rgba(4, 22, 48, 0.16) 48%,
            rgba(2, 12, 30, 0.84) 100%
        );
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .j9-hero__background-video,
    .j9-hero__background-video-overlay {
        display: none;
    }
}

/* ==========================================================================
   J9 HERO VIDEO BACKGROUND END
   ========================================================================== */
