/* Khareej landing — light white/blue + small white round story orb */
:root {
    --k-navy: #0a3a5c;
    --k-blue: #004a80;
    --k-accent: #0091ff;
    --k-cyan: #5ec8ff;
    --k-ink: #0b1f33;
    --k-muted: #5b738a;
    --k-display: 'Space Grotesk', 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --k-text: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --nav-h: 4.5rem;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --story-size: clamp(260px, 36vw, 420px);
    --page-pad: clamp(1rem, 3vw, 1.75rem);
    --section-max: min(1180px, 100%);
    --section-y: clamp(4.75rem, 8vw, 7.25rem);
    --mobile-frame-gap: 0px;
    --mobile-frame-radius: 0px;
}

html.landing-root {
    scroll-behavior: auto;
    box-sizing: border-box;
}

html.landing-root *,
html.landing-root *::before,
html.landing-root *::after {
    box-sizing: border-box;
}

body.landing-body {
    margin: 0;
    color: var(--k-ink);
    background:
        linear-gradient(180deg, #c5dcea 0%, #d8e8f4 42%, #c9dfee 100%);
    overflow-x: hidden;
    font-family: var(--k-text);
    -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] {
    --k-display: 'Tajawal', 'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
    --k-text: 'Noto Sans Arabic', 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
}

html[dir="rtl"] body.landing-body {
    font-family: var(--k-text);
}

.landing-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(920px 540px at 8% -8%, rgba(10, 58, 92, 0.28), transparent 58%),
        radial-gradient(780px 480px at 108% 18%, rgba(0, 74, 128, 0.22), transparent 54%),
        radial-gradient(700px 420px at 50% 108%, rgba(10, 58, 92, 0.22), transparent 58%),
        linear-gradient(165deg, #c8dcea 0%, #d5e6f2 38%, #c2d8e8 72%, #b7d0e4 100%);
}

.landing-lines {
    position: absolute;
    inset: -10% -5%;
    width: 110%;
    height: 120%;
    opacity: 0.55;
}

.line-path {
    fill: none;
    stroke: rgba(0, 145, 255, 0.22);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 8 14;
    animation: lineDrift 28s linear infinite;
}

.line-path--2 {
    stroke: rgba(0, 74, 128, 0.16);
    animation-duration: 36s;
    animation-direction: reverse;
}

.line-path--3 {
    stroke: rgba(94, 200, 255, 0.2);
    animation-duration: 32s;
}

@keyframes lineDrift {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -220; }
}

.landing-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 74, 128, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 74, 128, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 15%, transparent 75%);
    opacity: 0.75;
}

.landing-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(0, 74, 128, 0.16), transparent 52%),
        linear-gradient(180deg, rgba(10, 58, 92, 0.1), transparent 22%, transparent 78%, rgba(10, 58, 92, 0.12));
}

.hud-scene {
    position: absolute;
    inset: -8% -6%;
    width: 112%;
    height: 116%;
    opacity: 0.95;
}

.hud-scan {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            180deg,
            transparent 0 4px,
            rgba(0, 145, 255, 0.028) 4px 5px
        );
    animation: hudScan 10s linear infinite;
    opacity: 0.7;
    mix-blend-mode: multiply;
}

.hud-spin {
    transform-box: fill-box;
    transform-origin: center;
    will-change: transform;
}

.hud-spin--slow { animation: hudSpin 72s linear infinite; }
.hud-spin--mid { animation: hudSpin 38s linear infinite reverse; }
.hud-spin--fast { animation: hudSpin 22s linear infinite; }
.hud-spin--orbit { animation: hudSpin 54s linear infinite; }
.hud-spin--badge { animation: hudSpin 16s linear infinite; }

.hud-float {
    animation: hudFloat 9s ease-in-out infinite;
}
.hud-float--2 { animation-duration: 11s; animation-delay: -3s; }
.hud-float--3 { animation-duration: 13s; animation-delay: -6s; }

.hud-bar {
    transform-box: fill-box;
    transform-origin: center bottom;
}

.hud-bar--1 { animation: hudBar 2.4s ease-in-out infinite; }
.hud-bar--2 { animation: hudBar 1.9s ease-in-out infinite 0.2s; }
.hud-bar--3 { animation: hudBar 2.8s ease-in-out infinite 0.4s; }
.hud-bar--4 { animation: hudBar 2.1s ease-in-out infinite 0.1s; }
.hud-bar--5 { animation: hudBar 2.6s ease-in-out infinite 0.55s; }

.hud-arrow {
    animation: hudArrow 3.4s ease-in-out infinite;
}

@keyframes hudSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes hudFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes hudBar {
    0%, 100% { transform: scaleY(0.55); opacity: 0.45; }
    50% { transform: scaleY(1.15); opacity: 0.95; }
}

@keyframes hudArrow {
    0%, 100% { opacity: 0.35; transform: translateX(0); }
    50% { opacity: 0.95; transform: translateX(-12px); }
}

@keyframes hudScan {
    from { background-position: 0 0; }
    to { background-position: 0 120px; }
}

/* White round story image — hero size, body only (under nav) */
.story-traveler {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 25;
    width: var(--story-size);
    height: var(--story-size);
    pointer-events: none;
    will-change: transform, filter, opacity;
    transform: translate3d(-50%, -50%, 0);
    opacity: 0;
    overflow: visible;
}

.story-glow {
    position: absolute;
    inset: -28%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 40% 35%, rgba(0, 145, 255, 0.34), transparent 58%),
        radial-gradient(circle at 70% 70%, rgba(0, 74, 128, 0.18), transparent 55%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.story-orb {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    box-shadow:
        0 34px 68px rgba(10, 58, 92, 0.28),
        0 14px 32px rgba(0, 74, 128, 0.2),
        0 6px 16px rgba(0, 145, 255, 0.18),
        0 0 0 8px rgba(255, 255, 255, 0.96),
        0 0 0 10px rgba(0, 145, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.story-traveler.is-moving .story-orb {
    box-shadow:
        0 40px 78px rgba(10, 58, 92, 0.34),
        0 16px 36px rgba(0, 74, 128, 0.24),
        0 8px 20px rgba(0, 145, 255, 0.22),
        0 0 0 8px rgba(255, 255, 255, 0.96),
        0 0 0 10px rgba(0, 145, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.story-orb::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, transparent 40%),
        linear-gradient(to top, rgba(10, 58, 92, 0.18), transparent 38%);
}

.story-frame {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04) translateZ(0);
    will-change: opacity, transform;
    filter: none;
}

.story-frame.is-active {
    opacity: 1;
    transform: scale(1) translateZ(16px);
    filter: none;
}

.story-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    background: #f3f8fc;
}

.story-caption {
    position: absolute;
    inset-inline: 8%;
    bottom: 9%;
    z-index: 7;
    padding: 0.5rem 0.7rem;
    border-radius: 0.85rem;
    background: rgba(10, 58, 92, 0.62);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 18px rgba(10, 58, 92, 0.2);
}

.story-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.story-sub {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.62rem;
    opacity: 0.88;
    line-height: 1.3;
}

.moment-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    background: rgba(10, 58, 92, 0.12);
    border-radius: 50%;
}

.moment-layer.is-on {
    opacity: 1;
}

.grad-scene {
    width: 70%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.grad-cap {
    transform-origin: 100px 95px;
}

.grad-burst {
    opacity: 0.4;
}

.offer-card {
    width: min(72%, 180px);
    padding: 0.75rem 0.85rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 32px rgba(10, 58, 92, 0.22);
    text-align: center;
    color: var(--k-navy);
    transform: translateY(10px) scale(0.92);
}

.offer-card .offer-badge {
    display: inline-block;
    margin-bottom: 0.35rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #004a80, #0091ff);
}

.offer-card strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
}

.offer-card em {
    display: block;
    margin-top: 0.2rem;
    font-style: normal;
    font-size: 0.62rem;
    color: var(--k-muted);
}

.media-frame--ghost {
    opacity: 0.95;
    filter: none;
}

.showcase-card {
    position: relative;
    width: min(440px, 100%);
    margin-inline: auto;
    padding: 1.35rem;
    border-radius: 1.6rem;
    background: #ffffff;
    box-shadow:
        0 28px 60px rgba(10, 58, 92, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.9) inset;
    border: 1px solid rgba(0, 145, 255, 0.08);
    transform-style: preserve-3d;
    transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
    overflow: visible;
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: -40% auto -40% -60%;
    width: 45%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: translateX(-120%) skewX(-18deg);
    transition: transform 0.7s var(--ease);
    pointer-events: none;
    z-index: 4;
}

.showcase-card:hover {
    transform: translateY(-10px) rotateY(-7deg) rotateX(5deg) scale(1.02);
    box-shadow:
        0 40px 80px rgba(10, 58, 92, 0.2),
        0 0 0 1px rgba(0, 145, 255, 0.16),
        0 18px 40px rgba(0, 145, 255, 0.12);
}

.showcase-card:hover::before {
    transform: translateX(320%) skewX(-18deg);
}

.showcase-circle {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f8fc;
    box-shadow:
        0 18px 40px rgba(10, 58, 92, 0.14),
        0 0 0 6px #ffffff,
        0 0 0 8px rgba(0, 145, 255, 0.18);
}

.showcase-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #f3f8fc;
}

.showcase-logo-badge {
    position: absolute;
    top: 0.85rem;
    inset-inline-start: 0.85rem;
    z-index: 3;
    width: min(112px, 28%);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    display: grid;
    place-items: center;
    padding: 0.45rem;
    box-sizing: border-box;
    box-shadow:
        0 12px 28px rgba(10, 58, 92, 0.16),
        0 0 0 4px #ffffff,
        0 0 0 5px rgba(0, 145, 255, 0.2);
}

.showcase-logo-badge img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: transparent;
}

.showcase-chip {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    z-index: 3;
    width: min(78%, 260px);
    margin: 0;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    background: rgba(10, 58, 92, 0.72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 22px rgba(10, 58, 92, 0.2);
}

.landing-shell {
    position: relative;
    z-index: 1;
}

.glass-nav {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 50;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem var(--page-pad);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 74, 128, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(10, 58, 92, 0.06);
}

.glass-nav .brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    max-width: min(260px, 48vw);
    flex-shrink: 0;
    padding-block: 0.25rem;
}

.glass-nav .brand img,
.glass-nav .brand-logo {
    height: auto;
    width: auto;
    max-height: 2.85rem;
    max-width: 100%;
    object-fit: contain;
    object-position: start center;
    display: block;
    background: transparent;
}

.glass-nav .brand span {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-ghost,
.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s var(--ease);
}

.btn-ghost {
    padding: 0.5rem 0.95rem;
    color: var(--k-blue);
    border: 1px solid rgba(0, 74, 128, 0.14);
    background: rgba(255, 255, 255, 0.85);
}

.btn-solid {
    padding: 0.55rem 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, var(--k-blue), var(--k-accent));
    box-shadow: 0 10px 24px rgba(0, 145, 255, 0.28);
}

.btn-lg {
    padding: 0.8rem 1.4rem;
    font-size: 0.95rem;
}

.btn-ghost:hover,
.btn-solid:hover {
    transform: translateY(-1px);
}

.lang-menu { position: relative; }

.lang-toggle {
    min-width: 2.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.lang-menu .menu {
    position: absolute;
    inset-inline-end: 0;
    top: calc(100% + 0.35rem);
    min-width: 9rem;
    border-radius: 0.85rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 74, 128, 0.1);
    box-shadow: 0 16px 40px rgba(10, 58, 92, 0.12);
    z-index: 70;
}

.lang-menu .menu a {
    display: block;
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
    color: var(--k-ink);
    text-decoration: none;
}

.lang-menu .menu a:hover {
    background: rgba(0, 145, 255, 0.08);
}

/* Sections — normal document flow */
.land-section {
    position: relative;
    z-index: 1;
    min-height: 0;
    display: flex;
    align-items: flex-start;
    padding: var(--section-y) var(--page-pad);
    box-sizing: border-box;
    overflow: visible;
}

.land-section .inner {
    width: var(--section-max);
    margin-inline: auto;
}

.section-divider {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0 var(--page-pad);
    margin: 0.35rem 0;
    pointer-events: none;
}

.section-divider span {
    display: block;
    width: min(420px, 70%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 145, 255, 0.45), transparent);
    position: relative;
}

.section-divider span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: var(--k-accent);
    box-shadow: 0 0 0 4px rgba(0, 145, 255, 0.15), 0 0 18px rgba(0, 145, 255, 0.35);
}

.hero-section {
    overflow: hidden;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-end;
    padding: calc(var(--nav-h) + 1.25rem) var(--page-pad) clamp(2rem, 6vh, 3.5rem);
}

.hero-section--photo {
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-end;
    padding-top: calc(var(--nav-h) + 1.25rem);
    padding-bottom: clamp(2rem, 6vh, 3.5rem);
}

.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    display: block;
}

.hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 28, 48, 0.72) 0%, rgba(6, 28, 48, 0.42) 42%, rgba(6, 28, 48, 0.18) 70%, rgba(6, 28, 48, 0.28) 100%),
        linear-gradient(180deg, rgba(6, 28, 48, 0.22) 0%, transparent 28%, rgba(6, 28, 48, 0.55) 100%);
}

html[dir="rtl"] .hero-photo::after {
    background:
        linear-gradient(270deg, rgba(6, 28, 48, 0.72) 0%, rgba(6, 28, 48, 0.42) 42%, rgba(6, 28, 48, 0.18) 70%, rgba(6, 28, 48, 0.28) 100%),
        linear-gradient(180deg, rgba(6, 28, 48, 0.22) 0%, transparent 28%, rgba(6, 28, 48, 0.55) 100%);
}

.hero-section--photo .hero-inner {
    display: block;
    width: 100%;
    text-align: start;
    justify-items: start;
    z-index: 2;
}

.hero-section--photo .hero-copy {
    max-width: min(40rem, 100%);
}

.hero-section--photo .eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.hero-section--photo .hero-copy h1 {
    color: #fff;
    max-width: 16ch;
    text-shadow: 0 8px 28px rgba(6, 28, 48, 0.45);
}

.hero-section--photo .hero-title-accent {
    color: #9ad4ff;
}

.hero-section--photo .hero-copy p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 36rem;
}

.hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 145, 255, 0.18);
}

.hero-ring--1 {
    width: min(520px, 85vw);
    height: min(520px, 85vw);
    top: 50%;
    inset-inline-end: 8%;
    transform: translateY(-50%);
}

.hero-ring--2 {
    width: min(620px, 95vw);
    height: min(620px, 95vw);
    top: 50%;
    inset-inline-end: 4%;
    transform: translateY(-50%);
    border-style: dashed;
    opacity: 0.6;
    animation: ringPulse 8s ease-in-out infinite;
}

.hero-ring--3 {
    width: min(420px, 72vw);
    height: min(420px, 72vw);
    top: 50%;
    inset-inline-end: 12%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(0, 145, 255, 0.06) 0%, transparent 68%);
    border-color: rgba(94, 200, 255, 0.25);
}

@keyframes ringPulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.45; }
    50% { transform: translateY(-50%) scale(1.04); opacity: 0.75; }
}

/* Invisible docks — traveler targets these centers */
.travel-stop {
    pointer-events: none;
    flex-shrink: 0;
}

.travel-stop--hero {
    width: var(--story-size);
    aspect-ratio: 1;
    margin-inline: auto;
    border-radius: 50%;
}

.travel-stop--portals {
    position: absolute;
    top: 50%;
    inset-inline-end: clamp(0.75rem, 3vw, 2rem);
    width: min(168px, 20vw);
    aspect-ratio: 1;
    margin-top: calc(min(168px, 20vw) * -0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
}

@media (min-width: 960px) {
    .portals-section .inner,
    .roles-section .inner {
        max-width: var(--section-max);
        margin-inline: auto;
    }

    .portals-section .inner {
        padding-inline-end: min(180px, 16vw);
    }
}

@media (max-width: 859px) {
    .travel-stop--portals {
        top: 18%;
        inset-inline-end: 0.5rem;
        width: min(112px, 28vw);
        margin-top: calc(min(112px, 28vw) * -0.5);
    }

    .portals-section .inner {
        padding-inline-end: 0;
    }
}

.travel-stop--product {
    position: absolute;
    inset-inline-end: 8%;
    top: 12%;
    width: calc(var(--story-size) * 0.9);
    aspect-ratio: 1;
    z-index: 2;
    border-radius: 50%;
}

.travel-stop--journey {
    width: calc(var(--story-size) * 0.8);
    aspect-ratio: 1;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
}

.travel-stop--why,
.travel-stop--roles,
.travel-stop--faq {
    position: absolute;
    top: 50%;
    inset-inline-end: clamp(0.5rem, 2.5vw, 1.75rem);
    width: min(150px, 18vw);
    aspect-ratio: 1;
    margin-top: calc(min(150px, 18vw) * -0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
}

.travel-stop--roles {
    top: 42%;
    width: min(140px, 16vw);
    margin-top: calc(min(140px, 16vw) * -0.5);
}

.travel-stop--faq {
    top: 28%;
    inset-inline-end: clamp(0.25rem, 2vw, 1.25rem);
    width: min(120px, 14vw);
    margin-top: calc(min(120px, 14vw) * -0.5);
}

.travel-stop--final {
    position: relative;
    width: min(200px, 42vw);
    aspect-ratio: 1;
    border-radius: 50%;
    margin: 0;
    flex-shrink: 0;
    z-index: 2;
}

@media (max-width: 859px) {
    .travel-stop--roles,
    .travel-stop--faq {
        top: 12%;
        inset-inline-end: 0.35rem;
        width: min(96px, 26vw);
        margin-top: calc(min(96px, 26vw) * -0.5);
    }

    /* Dock only — don't reserve empty circle space inside the blue CTA */
    .travel-stop--final {
        position: absolute;
        width: min(120px, 34vw);
        aspect-ratio: 1;
        inset-inline-end: 0.75rem;
        bottom: 0.75rem;
        margin: 0;
        opacity: 0;
        pointer-events: none;
    }

    .final-cta {
        padding: 1.75rem 1.25rem 2rem;
        justify-items: center;
    }

    .final-cta-copy {
        width: 100%;
    }

    .final-cta .hero-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 20rem;
        margin-inline: auto;
    }

    .final-cta .hero-cta .btn-ghost,
    .final-cta .hero-cta .btn-solid {
        width: 100%;
    }
}

.hero-inner {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    text-align: center;
    justify-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 960px) {
    .hero-inner {
        grid-template-columns: 1.05fr 0.95fr;
        text-align: start;
        justify-items: stretch;
        gap: clamp(2rem, 4vw, 4rem);
    }

    html[dir="rtl"] .hero-inner {
        text-align: start;
    }

    .hero-copy {
        order: 0;
    }

    .travel-stop--hero {
        order: 1;
        margin-inline: 0;
        justify-self: end;
    }

    html[dir="rtl"] .travel-stop--hero {
        justify-self: start;
    }
}

.eyebrow {
    display: inline-flex;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-family: var(--k-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--k-accent);
    background: rgba(0, 145, 255, 0.1);
    border: 1px solid rgba(0, 145, 255, 0.18);
    box-shadow: 0 4px 14px rgba(0, 145, 255, 0.1);
}

.hero-copy h1 {
    margin: 1rem 0 0.75rem;
    font-family: var(--k-display);
    font-size: clamp(1.85rem, 4.4vw, 3.15rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--k-navy);
    letter-spacing: -0.03em;
    max-width: 18ch;
}

.hero-title-lead,
.hero-title-accent {
    display: block;
}

.hero-title-accent {
    color: var(--k-blue);
    font-weight: 600;
}

@media (min-width: 960px) {
    .hero-copy h1 {
        margin-inline-end: auto;
        max-width: 16ch;
    }

    html[dir="rtl"] .hero-copy h1 {
        margin-inline-end: 0;
        margin-inline-start: auto;
    }
}

.hero-copy p {
    margin: 0;
    max-width: 38rem;
    font-size: clamp(0.98rem, 1.8vw, 1.12rem);
    font-weight: 400;
    line-height: 1.72;
    color: var(--k-muted);
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.section-head p,
.product-copy p,
.product-copy .lead,
.portals-frame-head p,
.ambition-card span,
.journey-step p,
.faq-panel > p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

@media (min-width: 960px) {
    .hero-copy p {
        margin-inline-end: auto;
    }
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

@media (max-width: 959px) {
    .hero-copy h1,
    .hero-copy p,
    .scroll-hint {
        margin-inline: auto;
    }

    .hero-cta {
        justify-content: center;
    }
}

.scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--k-muted);
}

.scroll-arrow {
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid var(--k-accent);
    border-bottom: 2px solid var(--k-accent);
    transform: rotate(45deg);
    animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50% { transform: rotate(45deg) translateY(4px); opacity: 1; }
}

.section-head {
    text-align: center;
    margin-bottom: 2.75rem;
}

.section-head h2 {
    margin: 0.85rem 0 0.55rem;
    font-family: var(--k-display);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 700;
    color: var(--k-navy);
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.section-head h2::after {
    content: '';
    display: block;
    width: 3rem;
    height: 3px;
    margin: 0.75rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--k-blue), var(--k-cyan));
}

.section-head.light h2::after {
    background: linear-gradient(90deg, #9fd0ff, #fff);
}

.section-head p {
    margin: 0 auto;
    max-width: 38rem;
    color: var(--k-muted);
    line-height: 1.6;
}

.section-head.light h2 { color: #eaf3ff; }
.section-head.light p { color: rgba(234, 243, 255, 0.75); }
.section-head.light .eyebrow {
    color: #9fd0ff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.portals-section {
    position: relative;
    z-index: 30;
    overflow: visible;
}

.portals-section .portals-shell-card {
    position: relative;
    z-index: 28;
}

.portals-shell-card,
.portals-frame {
    padding: clamp(1.75rem, 3.4vw, 2.75rem);
    border-radius: 1.35rem;
    background: #ffffff;
    border: 1px solid rgba(0, 74, 128, 0.1);
    box-shadow:
        0 24px 56px rgba(10, 58, 92, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.portals-frame-head {
    margin-bottom: 2rem;
}

.portals-frame-head h2 {
    font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.portals-shell-card::before,
.portals-frame::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--k-blue), var(--k-accent), var(--k-cyan));
}

.portal-login-grid {
    display: grid;
    gap: 1.75rem;
    width: 100%;
    min-width: 0;
}

.portal-login-item {
    padding: 0.35rem 0;
    color: var(--k-ink);
    transition: transform 0.3s var(--ease);
    min-width: 0;
    width: 100%;
}

@media (min-width: 860px) {
    .portal-login-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .portal-login-item {
        padding-inline: 1.75rem;
    }

    .portal-login-item:first-child {
        padding-inline-start: 0.35rem;
    }

    .portal-login-item:last-child {
        padding-inline-end: 0.35rem;
    }

    .portal-login-item:not(:last-child) {
        border-inline-end: 1px solid rgba(0, 74, 128, 0.1);
    }
}

@media (max-width: 859px) {
    .portal-login-item:not(:last-child) {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(0, 74, 128, 0.1);
    }

    .portal-login-item p {
        min-height: auto;
    }
}

.portal-login-item:hover {
    transform: translateY(-4px);
}

.portal-login-item h3 {
    margin: 0 0 0.4rem;
    font-family: var(--k-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--k-navy);
}

.portal-login-item p {
    margin: 0 0 1.1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--k-muted);
    min-height: 3.4rem;
}

.portal-login-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--k-blue), var(--k-accent));
}

.roles-section {
    position: relative;
    z-index: 30;
    overflow: visible;
    padding: var(--section-y) var(--page-pad);
    background:
        radial-gradient(800px 420px at 50% 0%, rgba(0, 145, 255, 0.1), transparent 58%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.roles-section .section-head,
.roles-section .roles-grid {
    position: relative;
    z-index: 30;
}

@media (min-width: 960px) {
    .roles-section .inner,
    .faq-section .faq-inner {
        padding-inline-end: min(170px, 15vw);
    }
}

.roles-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .roles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

.role-card {
    position: relative;
    display: block;
    min-height: clamp(380px, 52vh, 520px);
    border-radius: 1.5rem;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 22px 48px rgba(10, 58, 92, 0.16);
    isolation: isolate;
    transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}

.role-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s var(--ease);
}

.role-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(10, 58, 92, 0.05) 0%,
        rgba(10, 58, 92, 0.2) 35%,
        rgba(0, 58, 102, 0.82) 72%,
        rgba(0, 42, 74, 0.94) 100%
    );
}

.role-card-overlay {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.5rem 1.35rem 1.4rem;
    display: grid;
    gap: 0.55rem;
}

.role-card h3 {
    margin: 0;
    font-family: var(--k-display);
    font-size: clamp(1.35rem, 2.4vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.role-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(234, 243, 255, 0.9);
    max-width: 28ch;
}

.role-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--k-cyan);
    transition: gap 0.3s var(--ease), color 0.3s ease;
}

.role-card-cta i {
    font-style: normal;
    transition: transform 0.3s var(--ease);
}

html[dir="rtl"] .role-card-cta i {
    display: inline-block;
    transform: scaleX(-1);
}

.role-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 145, 255, 0.28);
}

.role-card:hover img {
    transform: scale(1.06);
}

.role-card:hover .role-card-cta {
    color: #fff;
    gap: 0.65rem;
}

.role-card:hover .role-card-cta i {
    transform: translateX(3px);
}

html[dir="rtl"] .role-card:hover .role-card-cta i {
    transform: scaleX(-1) translateX(3px);
}

.role-card--university .role-card-overlay { text-align: start; }
.role-card--company .role-card-overlay { text-align: center; }
.role-card--company p { margin-inline: auto; }
.role-card--company .role-card-cta { justify-content: center; }
.role-card--student .role-card-overlay { text-align: end; }
.role-card--student .role-card-cta { justify-content: flex-end; }

html[dir="rtl"] .role-card--university .role-card-overlay { text-align: start; }
html[dir="rtl"] .role-card--student .role-card-overlay { text-align: end; }

@media (max-width: 899px) {
    .role-card {
        min-height: 340px;
    }

    .role-card--university .role-card-overlay,
    .role-card--company .role-card-overlay,
    .role-card--student .role-card-overlay {
        text-align: start;
    }

    .role-card--company p,
    .role-card--student p {
        margin-inline: 0;
        max-width: none;
    }

    .role-card--company .role-card-cta,
    .role-card--student .role-card-cta {
        justify-content: flex-start;
    }
}

.product-section {
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    inset-inline-start: var(--page-pad);
    top: 2rem;
    width: 3px;
    height: min(120px, 18%);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--k-accent), transparent);
    opacity: 0.55;
    pointer-events: none;
}

.product-grid {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    align-items: center;
}

@media (max-width: 959px) {
    .product-grid {
        text-align: center;
    }

    .product-copy {
        order: 1;
    }

    .product-media {
        order: 2;
    }

    .product-section.is-flip .product-copy {
        order: 2;
    }

    .product-section.is-flip .product-media {
        order: 1;
    }

    .product-copy .lead,
    .product-copy h2 {
        margin-inline: auto;
    }

    .benefit-list {
        text-align: start;
    }

    .product-copy .btn-solid {
        display: flex;
        width: 100%;
        max-width: 320px;
        margin-inline: auto;
    }

    .benefit-list {
        margin-inline: auto;
        max-width: 28rem;
    }
}

@media (min-width: 960px) {
    .product-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 4.25rem;
    }

    .product-copy {
        order: 1;
    }

    .product-media {
        order: 2;
    }

    .product-section.is-flip .product-copy {
        order: 2;
    }

    .product-section.is-flip .product-media {
        order: 1;
    }

    .product-section.is-flip .travel-stop--product {
        inset-inline-end: auto;
        inset-inline-start: 8%;
    }
}

.product-copy h2 {
    margin: 1rem 0 0.7rem;
    font-size: clamp(1.65rem, 3.2vw, 2.55rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--k-navy);
}

@media (min-width: 960px) {
    .product-copy {
        text-align: start;
    }
}

.product-copy .lead {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--k-muted);
}

.benefit-list {
    list-style: none;
    margin: 1.5rem 0 1.85rem;
    padding: 0;
    display: grid;
    gap: 0.8rem;
    perspective: 900px;
}

.benefit-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.7rem 0.85rem;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
    border: 1px solid rgba(0, 145, 255, 0.1);
    box-shadow: 0 10px 22px rgba(10, 58, 92, 0.08);
    font-size: 0.9rem;
    color: var(--k-ink);
    transform-style: preserve-3d;
    transition: transform 0.35s var(--ease), box-shadow 0.35s ease, background 0.3s ease, border-color 0.3s ease;
}

.benefit-list li:nth-child(3n+1):hover {
    transform: translateX(8px) rotateY(-6deg) translateZ(10px) scale(1.025);
    box-shadow: 0 16px 32px rgba(0, 145, 255, 0.16);
    background: #fff;
    border-color: rgba(0, 145, 255, 0.28);
}

.benefit-list li:nth-child(3n+2):hover {
    transform: translateX(6px) rotateX(-5deg) scale(1.03);
    box-shadow: 0 18px 34px rgba(10, 58, 92, 0.14);
    background: #fff;
    border-color: rgba(0, 74, 128, 0.2);
}

.benefit-list li:nth-child(3n):hover {
    transform: translateX(8px) rotateY(6deg) rotateZ(0.5deg) scale(1.025);
    box-shadow: 0 16px 32px rgba(94, 200, 255, 0.22);
    background: #fff;
    border-color: rgba(94, 200, 255, 0.4);
}

.benefit-list .check {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--k-accent), var(--k-cyan));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
}

.story-traveler.is-compact .story-caption {
    opacity: 0;
    pointer-events: none;
}

.story-traveler.is-compact .moment-layer {
    display: none;
}

.hero-copy,
.product-copy,
.section-head,
.portal-login-grid,
.roles-grid,
.journey-track,
.stats-grid,
.final-cta-copy,
.final-cta-copy h2,
.final-cta-copy > p,
.final-cta .hero-cta {
    position: relative;
    z-index: 28;
}

.product-media {
    position: relative;
    z-index: 5;
}

.showcase-card,
.media-frame {
    position: relative;
    z-index: 5;
}

.product-media:has(.showcase-card) .travel-stop--product {
    inset-inline-end: auto;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(340px, 72%);
}

.media-frame {
    border-radius: 1.35rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 56px rgba(10, 58, 92, 0.14);
    aspect-ratio: 16 / 10;
    max-width: min(560px, 100%);
    margin-inline: auto;
    transform-style: preserve-3d;
    transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
}

.media-frame--wide {
    aspect-ratio: 16 / 9;
    max-width: min(640px, 100%);
}

.product-section:not(.is-flip) .media-frame:hover {
    transform: translateY(-10px) rotateY(8deg) rotateX(3deg) scale(1.03);
    box-shadow: 0 36px 72px rgba(0, 145, 255, 0.24);
}

.product-section.is-flip .media-frame:hover {
    transform: translateY(-10px) rotateY(-8deg) rotateX(3deg) scale(1.03);
    box-shadow: 0 36px 72px rgba(10, 58, 92, 0.22);
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #0a3a5c;
}

.journey-section {
    background:
        radial-gradient(700px 420px at 20% 20%, rgba(0, 145, 255, 0.25), transparent 55%),
        linear-gradient(145deg, #062840 0%, #004a80 55%, #0091ff 100%);
    color: #fff;
}

.journey-track {
    display: grid;
    gap: 1.35rem;
    perspective: 1100px;
}

@media (min-width: 900px) {
    .journey-track {
        grid-template-columns: repeat(4, 1fr);
    }
}

.journey-step {
    padding: 1.25rem 1.1rem;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.07) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 32px rgba(0, 20, 40, 0.22);
    transform-style: preserve-3d;
    transition: transform 0.4s var(--ease), background 0.35s ease, box-shadow 0.4s ease, border-color 0.35s ease;
}

.journey-step:nth-child(1):hover {
    transform: translateY(-12px) rotateZ(-2.5deg) rotateY(-4deg) scale(1.04);
    background: rgba(255,255,255,0.16);
    border-color: rgba(159, 208, 255, 0.45);
    box-shadow: 0 22px 44px rgba(0,0,0,0.28), 0 0 28px rgba(0, 145, 255, 0.2);
}
.journey-step:nth-child(2):hover {
    transform: translateY(-14px) rotateX(-8deg) scale(1.05);
    background: rgba(255,255,255,0.16);
    border-color: rgba(159, 208, 255, 0.45);
    box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 28px rgba(94, 200, 255, 0.22);
}
.journey-step:nth-child(3):hover {
    transform: translateY(-12px) rotateZ(2.5deg) rotateY(4deg) scale(1.04);
    background: rgba(255,255,255,0.16);
    border-color: rgba(159, 208, 255, 0.45);
    box-shadow: 0 22px 44px rgba(0,0,0,0.28), 0 0 28px rgba(0, 145, 255, 0.2);
}
.journey-step:nth-child(4):hover {
    transform: translateY(-14px) rotateY(9deg) rotateX(4deg) scale(1.05);
    background: rgba(255,255,255,0.16);
    border-color: rgba(159, 208, 255, 0.45);
    box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 28px rgba(94, 200, 255, 0.22);
}

.journey-step .step-num {
    display: inline-block;
    margin-bottom: 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #9fd0ff;
}

.journey-step h3 {
    margin: 0 0 0.4rem;
    font-family: var(--k-display);
    font-size: 1.02rem;
}

.journey-step p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(234, 243, 255, 0.78);
}

.stats-grid {
    display: grid;
    gap: 1.35rem;
    margin-bottom: 2.25rem;
    perspective: 1000px;
}

.why-section {
    position: relative;
    z-index: 30;
    overflow: visible;
    min-height: 0;
}

.why-section .section-head,
.why-section .stats-grid,
.why-section .final-cta-copy {
    position: relative;
    z-index: 30;
}

.final-cta {
    position: relative;
    display: grid;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    padding: 2rem 1.4rem;
    border-radius: 1.6rem;
    background: linear-gradient(135deg, #004a80 0%, #0091ff 100%);
    color: #fff;
    box-shadow: 0 28px 60px rgba(0, 145, 255, 0.25);
    overflow: visible;
    z-index: 5;
}

@media (min-width: 860px) {
    .final-cta {
        grid-template-columns: 1fr auto;
        text-align: start;
        padding: 2rem 2rem 2rem 2.25rem;
        gap: 1.75rem;
    }

    .final-cta .hero-cta {
        justify-content: flex-start;
    }
}

.final-cta-copy h2 {
    margin: 0 0 0.5rem;
    font-family: var(--k-display);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.final-cta-copy > p {
    margin: 0 auto 1.25rem;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 860px) {
    .final-cta-copy > p {
        margin-inline: 0;
    }
}

.final-cta .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.final-cta .btn-solid {
    background: #fff;
    color: var(--k-blue);
}

.final-cta .hero-cta {
    justify-content: center;
}

@media (min-width: 800px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    padding: 1.25rem 1rem;
    border-radius: 1.1rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 16px 34px rgba(10, 58, 92, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.9) inset;
    transform-style: preserve-3d;
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease, border-color 0.35s ease;
}

.stat-card:nth-child(1):hover {
    transform: translateY(-12px) rotateY(-9deg) rotateX(4deg) scale(1.05);
    box-shadow: 0 26px 48px rgba(0, 145, 255, 0.22);
    border-color: rgba(0, 145, 255, 0.28);
}
.stat-card:nth-child(2):hover {
    transform: translateY(-14px) rotateX(-8deg) scale(1.06);
    box-shadow: 0 28px 52px rgba(10, 58, 92, 0.18);
    border-color: rgba(0, 74, 128, 0.22);
}
.stat-card:nth-child(3):hover {
    transform: translateY(-12px) rotateY(9deg) rotateX(4deg) scale(1.05);
    box-shadow: 0 26px 48px rgba(94, 200, 255, 0.28);
    border-color: rgba(94, 200, 255, 0.45);
}
.stat-card:nth-child(4):hover {
    transform: translateY(-14px) rotateZ(-2deg) rotateY(-4deg) scale(1.06);
    box-shadow: 0 28px 52px rgba(0, 145, 255, 0.2);
    border-color: rgba(0, 145, 255, 0.25);
}

.stat-card strong {
    display: block;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--k-accent);
    margin-bottom: 0.3rem;
}

.stat-card span {
    font-size: 0.84rem;
    color: var(--k-muted);
}

.ambition-section {
    min-height: auto;
    align-items: flex-start;
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
    z-index: 20;
}

.ambition-section .section-head,
.ambition-section .ambition-grid,
.ambition-section .projects-grid {
    position: relative;
    z-index: 30;
}

.ambition-grid,
.projects-grid {
    display: grid;
    gap: 1.35rem;
    perspective: 1000px;
}

@media (min-width: 800px) {
    .ambition-grid,
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ambition-card {
    text-align: start;
    padding: 1.25rem 1.15rem;
}

.ambition-card strong {
    font-family: var(--k-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--k-ink);
    line-height: 1.35;
    margin-bottom: 0.45rem;
}

.ambition-card span {
    display: block;
    font-size: 0.86rem;
    line-height: 1.55;
}

.ambition-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 26px 48px rgba(0, 145, 255, 0.18);
    border-color: rgba(0, 145, 255, 0.28);
}

/* FAQ */
.faq-section {
    position: relative;
    z-index: 30;
    padding: var(--section-y) var(--page-pad);
    background:
        radial-gradient(700px 360px at 50% 0%, rgba(0, 145, 255, 0.08), transparent 60%),
        #ffffff;
    overflow: visible;
}

.faq-section .section-head,
.faq-section .faq-list {
    position: relative;
    z-index: 30;
}

.faq-inner {
    width: var(--section-max);
    margin-inline: auto;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
    max-width: 760px;
    margin-inline: auto;
}

.faq-item {
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    border: 1px solid rgba(0, 74, 128, 0.08);
    box-shadow: 0 14px 30px rgba(10, 58, 92, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item.is-open {
    border-color: rgba(0, 145, 255, 0.22);
    box-shadow: 0 16px 36px rgba(0, 145, 255, 0.12);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.05rem 1.15rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: start;
    font: inherit;
    color: var(--k-navy);
}

.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 0.35rem;
    background: rgba(0, 145, 255, 0.1);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--k-accent);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.25s ease;
}

.faq-icon::before {
    width: 0.65rem;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 0.65rem;
    transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question {
    flex: 1;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--k-navy);
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s var(--ease);
}

.faq-item.is-open .faq-panel {
    grid-template-rows: 1fr;
}

.faq-panel > p {
    overflow: hidden;
    margin: 0;
    padding-block: 0;
    padding-inline: 3.4rem 1.15rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--k-muted);
}

.faq-item.is-open .faq-panel > p {
    padding-bottom: 1.15rem;
}

/* Site footer — Khareej navy */
.site-footer {
    position: relative;
    z-index: 2;
    background: linear-gradient(160deg, #062840 0%, #0a3a5c 45%, #004a80 100%);
    color: #eaf3ff;
    padding: 4.25rem var(--page-pad) 2rem;
}

.site-footer-inner {
    width: var(--section-max);
    margin-inline: auto;
}

.site-footer-grid {
    display: grid;
    gap: 2rem 1.5rem;
    margin-bottom: 2.25rem;
}

@media (min-width: 720px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .site-footer-grid {
        grid-template-columns: 0.9fr 0.9fr 0.9fr 1.35fr;
        gap: 2rem;
    }
}

.footer-col h3 {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.footer-col a {
    color: rgba(234, 243, 255, 0.78);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--k-cyan);
}

.footer-col--brand {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.footer-brand {
    display: inline-flex;
    width: fit-content;
}

.footer-logo {
    height: 2.4rem;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-col--brand p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.65;
    color: rgba(234, 243, 255, 0.78);
    max-width: 34ch;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social-btn:hover {
    background: rgba(0, 145, 255, 0.25);
    border-color: rgba(94, 200, 255, 0.55);
}

.site-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    color: rgba(234, 243, 255, 0.62);
}

.site-footer-bottom p {
    margin: 0;
}

@media (max-width: 719px) {
    .site-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-col--brand {
        order: -1;
    }

    .footer-brand {
        margin-inline: auto;
    }

    .footer-col--brand p {
        text-align: center;
        max-width: none;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Partners train / marquee */
.partners-section {
    position: relative;
    z-index: 2;
    padding: var(--section-y) 0;
    background:
        linear-gradient(180deg, rgba(232, 242, 251, 0.55) 0%, rgba(245, 249, 252, 0.95) 40%, #f7fafc 100%);
    border-block: 1px solid rgba(0, 74, 128, 0.06);
    overflow: hidden;
}

.partners-inner {
    width: var(--section-max);
    margin-inline: auto;
    padding-inline: var(--page-pad);
}

.partners-title {
    margin: 0 auto 2.25rem;
    max-width: 44rem;
    text-align: center;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--k-navy);
}

.partners-rail {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.partners-track {
    display: flex;
    width: 200%;
    animation: partnersTrain 48s linear infinite;
    will-change: transform;
}

.partners-rail:hover .partners-track {
    animation-play-state: paused;
}

.partners-list {
    display: flex;
    flex: 0 0 50%;
    align-items: center;
    justify-content: space-evenly;
    gap: clamp(2rem, 4.5vw, 5rem);
    list-style: none;
    margin: 0;
    padding: 0.85rem clamp(0.75rem, 2vw, 1.5rem);
}

.partner-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
    min-height: 4.25rem;
    white-space: nowrap;
    opacity: 0.48;
    filter: grayscale(1);
    transition: opacity 0.25s ease, transform 0.3s var(--ease), filter 0.3s ease;
}

.partner-chip:hover {
    opacity: 0.9;
    filter: grayscale(0.2);
    transform: translateY(-4px) scale(1.04);
}

.partner-chip--logo {
    opacity: 0.82;
    filter: none;
    padding: 0.75rem 1.15rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(10, 58, 92, 0.08);
}

.partner-chip--logo:hover {
    opacity: 1;
    filter: none;
}

.partner-logo {
    display: block;
    height: clamp(3rem, 5.5vw, 4.75rem);
    width: auto;
    max-width: clamp(9rem, 16vw, 15rem);
    object-fit: contain;
}

.partner-mark {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background:
        linear-gradient(135deg, rgba(0, 74, 128, 0.35), rgba(0, 145, 255, 0.25));
    box-shadow: inset 0 0 0 1px rgba(0, 74, 128, 0.12);
    flex-shrink: 0;
}

.partner-chip--name {
    flex-direction: column;
    gap: 0.6rem;
    max-width: 10rem;
    text-align: center;
}

.partner-name {
    font-size: clamp(0.82rem, 1.4vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5a6f82;
    line-height: 1.35;
    max-width: 11rem;
    text-align: center;
    white-space: normal;
}

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

@media (min-width: 960px) {
    .partners-track {
        width: 200%;
    }

    .partners-list {
        flex: 0 0 50%;
        justify-content: space-evenly;
    }
}

@media (max-width: 959px) {
    .partners-track {
        width: max-content;
    }

    .partners-list {
        flex: 0 0 auto;
        width: max-content;
        justify-content: flex-start;
        gap: clamp(2.5rem, 8vw, 4.5rem);
        padding-inline: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .partners-track {
        animation: none;
        width: 100%;
    }

    .partners-list:last-child {
        display: none;
    }

    .partners-list {
        flex: 1 1 100%;
        flex-wrap: wrap;
        justify-content: space-evenly;
        padding: 0;
        gap: clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3.5rem);
    }

    .line-path,
    .hero-ring--2,
    .scroll-arrow,
    .hud-spin,
    .hud-float,
    .hud-bar,
    .hud-arrow,
    .hud-scan {
        animation: none;
    }
}

@media (max-width: 720px) {
    :root {
        --nav-h: 3.85rem;
        --story-size: min(58vw, 220px);
        --page-pad: 1.15rem;
        --mobile-frame-gap: 0px;
        --mobile-frame-radius: 0px;
    }

    html.landing-root,
    body.landing-body {
        width: 100%;
        max-width: 100%;
        min-height: 100dvh;
        padding: 0;
        margin: 0;
        background:
            linear-gradient(180deg, #c2d8ea 0%, #d4e4f0 46%, #c6dcea 100%);
    }

    .landing-bg {
        inset: 0;
        border-radius: 0;
    }

    .hud-scene {
        opacity: 0.82;
    }

    .hud-eq,
    .hud-grid-block {
        opacity: 0.7;
    }

    .landing-shell {
        position: relative;
        min-height: 100dvh;
        width: 100%;
        max-width: 100%;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .glass-nav {
        position: fixed;
        top: 0;
        inset-inline: 0;
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        gap: 0.45rem;
        height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
        padding: env(safe-area-inset-top, 0px) 1rem 0;
        border-radius: 0;
        border: 0;
        border-bottom: 1px solid rgba(0, 74, 128, 0.08);
        box-shadow: 0 8px 24px rgba(10, 58, 92, 0.08);
        background: rgba(255, 255, 255, 0.94);
    }

    .glass-nav .brand {
        max-width: min(118px, 34vw);
    }

    .glass-nav .brand-logo {
        max-height: 1.95rem;
    }

    .glass-nav .nav-actions {
        gap: 0.3rem;
        flex-shrink: 0;
    }

    .glass-nav .nav-start {
        display: none;
    }

    .lang-menu {
        display: block;
        flex-shrink: 0;
    }

    .lang-toggle {
        display: inline-flex !important;
        min-width: 2.45rem;
        padding: 0.42rem 0.55rem;
        border-color: rgba(0, 74, 128, 0.22);
        background: #fff;
        color: var(--k-navy);
        font-weight: 800;
    }

    .btn-ghost,
    .btn-solid {
        font-size: 0.76rem;
        padding: 0.4rem 0.68rem;
        white-space: nowrap;
        max-width: 100%;
    }

    .btn-lg {
        padding: 0.72rem 1rem;
        font-size: 0.88rem;
        width: 100%;
        max-width: 100%;
    }

    .land-section {
        min-height: auto;
        padding: 3.75rem var(--page-pad);
        align-items: flex-start;
        width: 100%;
    }

    .land-section .inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
    }

    .hero-section,
    .hero-section--photo {
        min-height: 100dvh;
        align-items: flex-end;
        justify-content: flex-end;
        padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 0.85rem);
        padding-bottom: 2rem;
    }

    .hero-photo img {
        object-position: center 38%;
    }

    .hero-inner {
        gap: 1.15rem;
        width: 100%;
        text-align: start;
        justify-items: stretch;
    }

    .hero-section .travel-stop--hero {
        display: block;
        width: min(var(--story-size), 220px);
        min-height: min(var(--story-size), 220px);
        margin: 0.35rem auto 0;
    }

    .hero-copy {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding-inline: 0;
        text-align: start;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }

    .hero-cta .btn-ghost,
    .hero-cta .btn-solid {
        width: 100%;
    }

    .hero-ring--1,
    .hero-ring--2,
    .hero-ring--3 {
        inset-inline-end: 50%;
        transform: translate(50%, -50%);
        animation: none;
    }

    html[dir="rtl"] .hero-ring--1,
    html[dir="rtl"] .hero-ring--2,
    html[dir="rtl"] .hero-ring--3 {
        transform: translate(-50%, -50%);
    }

    .hero-copy h1 {
        max-width: none;
        width: 100%;
        font-size: clamp(1.45rem, 6.8vw, 1.95rem);
        text-align: start;
        text-wrap: balance;
    }

    .hero-copy p {
        font-size: 0.92rem;
        padding-inline: 0;
        width: 100%;
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

    .section-head {
        margin-bottom: 1.35rem;
        padding-inline: 0;
        text-align: start;
        width: 100%;
    }

    .section-head p,
    .product-copy p,
    .portals-frame-head p,
    .ambition-card span,
    .journey-step p,
    .faq-panel > p {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

    .section-head h2 {
        font-size: clamp(1.32rem, 5.6vw, 1.75rem);
    }

    .story-traveler {
        width: var(--story-size);
        height: var(--story-size);
        z-index: 6;
        pointer-events: none;
    }

    .story-sub {
        display: none;
    }

    .story-caption {
        font-size: 0.62rem;
        padding: 0.38rem 0.55rem;
    }

    .story-label {
        font-size: 0.62rem;
    }

    /* Docks stay in the layout for GSAP — positioned in open gutters, not over buttons */
    .travel-stop--portals {
        display: block;
        position: absolute;
        top: calc(var(--nav-h) + 0.15rem);
        left: 50%;
        inset-inline: auto;
        inset-inline-start: 50%;
        inset-inline-end: auto;
        width: min(120px, 32vw);
        margin-top: 0;
        transform: translateX(-50%);
        opacity: 1;
    }

    html[dir="rtl"] .travel-stop--portals {
        transform: translateX(-50%);
    }

    .travel-stop--roles,
    .travel-stop--faq {
        top: 0.75rem;
        inset-inline-end: 0.5rem;
        inset-inline-start: auto;
        width: min(88px, 24vw);
        margin-top: 0;
    }

    .travel-stop--final {
        position: absolute;
        width: min(100px, 28vw);
        inset-inline-end: 0.65rem;
        bottom: 0.65rem;
        margin: 0;
        opacity: 1;
    }

    .final-cta {
        padding-bottom: 2.5rem;
        width: 100%;
        margin-inline: 0;
        text-align: start;
    }

    .final-cta .hero-cta {
        max-width: none;
        width: 100%;
        margin-inline: 0;
    }

    .travel-stop--product {
        position: relative;
        inset: auto;
        width: min(210px, 54vw);
        margin: 0 auto 1rem;
        transform: none;
        left: auto;
    }

    .product-media:has(.showcase-card) .travel-stop--product {
        left: auto;
        top: auto;
        transform: none;
        width: min(210px, 54vw);
        margin: 0 auto 1rem;
    }

    .showcase-card,
    .media-frame {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }

    .media-frame img,
    .showcase-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .portals-section {
        z-index: 10;
        padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + min(var(--story-size), 220px) * 0.38 + 0.75rem);
        padding-bottom: 2.5rem;
        width: 100%;
    }

    .portals-section .inner {
        padding-inline: 0;
        position: relative;
        z-index: 12;
    }

    .portals-frame {
        padding: 1.15rem 0.9rem 1.2rem;
        border-radius: 1.2rem;
        border: 1px solid rgba(0, 74, 128, 0.1);
        box-shadow:
            0 18px 40px rgba(10, 58, 92, 0.14),
            0 0 0 1px rgba(255, 255, 255, 0.92) inset;
        background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
        position: relative;
        z-index: 12;
        width: 100%;
    }

    .portals-frame-head {
        margin-bottom: 1rem;
        padding-inline: 0;
    }

    .portals-frame-head h2 {
        font-size: clamp(1.18rem, 5vw, 1.5rem);
    }

    .portals-frame-head p {
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .portal-login-grid {
        gap: 0.85rem;
    }

    .portal-login-item {
        text-align: start;
        padding: 0.95rem 0.95rem 1rem;
        border-radius: 1rem;
        background: linear-gradient(180deg, #ffffff 0%, #eef6fc 100%);
        box-shadow: 0 12px 26px rgba(10, 58, 92, 0.1);
        border: 1px solid rgba(0, 74, 128, 0.08);
    }

    .portal-login-item:hover {
        transform: none;
    }

    .portal-login-item:not(:last-child) {
        margin-bottom: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 74, 128, 0.08);
    }

    .portal-login-item h3 {
        font-size: 0.98rem;
    }

    .portal-login-item p {
        min-height: auto;
        margin-bottom: 0.85rem;
        font-size: 0.82rem;
        line-height: 1.5;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .portal-login-btn {
        width: 100%;
        max-width: 100%;
        padding: 0.62rem 0.85rem;
        font-size: 0.84rem;
        border-radius: 0.65rem;
        position: relative;
        z-index: 14;
    }

    .hero-copy,
    .product-copy,
    .section-head,
    .portal-login-grid,
    .portal-login-item,
    .roles-grid,
    .faq-list,
    .final-cta-copy,
    .final-cta .hero-cta {
        position: relative;
        z-index: 14;
    }

    .product-section .product-copy,
    .product-section .product-media {
        padding-inline: 0;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        text-align: start;
    }

    .product-copy .btn-solid {
        width: 100%;
        max-width: 100%;
    }

    .benefit-list {
        max-width: 100%;
    }

    .benefit-list li {
        overflow-wrap: anywhere;
    }

    .benefit-list li:hover {
        transform: none;
    }

    .roles-section,
    .faq-section {
        position: relative;
        z-index: 30;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
        padding-inline: var(--page-pad);
    }

    .role-card {
        min-height: 280px;
        width: 100%;
        border-radius: 1.15rem;
        box-shadow: 0 18px 36px rgba(10, 58, 92, 0.16);
    }

    .role-card-overlay {
        padding: 1.15rem 1rem 1.1rem;
    }

    .role-card p {
        max-width: none;
    }

    .journey-track {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .ambition-section {
        min-height: auto;
        padding-top: 2.75rem;
        padding-bottom: 2.5rem;
    }

    .ambition-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        width: 100%;
    }

    .ambition-card {
        padding: 1.1rem 1rem;
        width: 100%;
        box-shadow: 0 14px 28px rgba(10, 58, 92, 0.12);
    }

    .ambition-card:hover {
        transform: none;
    }

    .stat-card {
        padding: 0.95rem 0.65rem;
    }

    .stat-card span {
        font-size: 0.76rem;
        line-height: 1.35;
        display: block;
    }

    .faq-list {
        max-width: none;
    }

    .faq-trigger {
        gap: 0.65rem;
        padding: 0.9rem 0.95rem;
    }

    .faq-panel > p {
        padding-inline: 1rem 1rem;
        padding-inline-start: 2.95rem;
    }

    .showcase-logo-badge {
        width: min(84px, 28%);
    }

    .showcase-chip {
        font-size: 0.62rem;
        bottom: 1.1rem;
        width: min(84%, 220px);
        padding: 0.42rem 0.6rem;
    }

    .partners-section {
        padding: 2.75rem 0 3rem;
    }

    .partners-inner {
        padding-inline: var(--page-pad);
    }

    .partners-title {
        margin-bottom: 1.5rem;
        font-size: 0.92rem;
    }

    .partners-list {
        gap: clamp(1.75rem, 6vw, 3rem);
        padding-inline: 0.35rem;
    }

    .partner-chip {
        min-height: 3.5rem;
    }

    .partner-logo {
        height: clamp(2.6rem, 10vw, 3.4rem);
        max-width: min(42vw, 11rem);
    }

    .partner-chip--logo {
        padding: 0.55rem 0.85rem;
    }

    .partner-name {
        max-width: 8.5rem;
        font-size: 0.78rem;
    }

    .section-divider {
        margin: 0.25rem var(--page-pad);
    }

    .site-footer {
        margin-top: 0;
        padding: 2.5rem var(--page-pad) calc(1.25rem + env(safe-area-inset-bottom, 0px));
        border-radius: 0;
        width: 100%;
    }

    .footer-col h3 {
        margin-bottom: 0.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .showcase-card::before { display: none; }
    .role-card:hover,
    .portal-login-item:hover,
    .benefit-list li:hover,
    .showcase-card:hover,
    .journey-step:hover,
    .stat-card:hover,
    .media-frame:hover,
    .product-section:not(.is-flip) .media-frame:hover,
    .product-section.is-flip .media-frame:hover,
    .partner-chip:hover {
        transform: none;
    }

    .role-card:hover img {
        transform: none;
    }
}

/* After-footer: Ask AI + security */
.ask-ai-section {
    position: relative;
    z-index: 2;
    background: #f4f6f8;
    padding: var(--section-y) var(--page-pad) 2.5rem;
    text-align: center;
    min-height: 0;
}

.ask-ai-inner,
.security-inner {
    width: var(--section-max);
    margin-inline: auto;
}

.ask-ai-section h2 {
    margin: 0;
    color: #1a2744;
    font-family: var(--k-display);
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.ask-ai-section p {
    margin: 0.7rem auto 0;
    max-width: 38rem;
    color: #8b97ab;
    font-size: 0.98rem;
    line-height: 1.55;
}

.ask-ai-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin: 1.35rem 0 0;
}

.ask-ai-icon {
    width: 3.35rem;
    height: 3.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.05rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.ask-ai-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.14);
}

.ask-ai-icon svg {
    width: 1.45rem;
    height: 1.45rem;
}

.ask-ai-icon--chatgpt {
    background: #111;
    color: #fff;
}

.ask-ai-icon--claude {
    background: #f4e6d8;
    color: #d97746;
}

.ask-ai-icon--perplexity {
    background: #1a1d27;
    color: #22d3c5;
}

.ask-ai-icon--gemini {
    background: #fff;
    color: #8b5cf6;
    border: 1px solid rgba(16, 24, 40, 0.08);
}

.ask-ai-icon--groq {
    background: #111;
    color: #fff;
}

.security-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background:
        radial-gradient(720px 420px at 8% 108%, rgba(109, 79, 232, 0.28), transparent 62%),
        #07070a;
    color: #fff;
    padding: 3.25rem var(--page-pad) 3.5rem;
    text-align: center;
    min-height: 0;
}

.security-eyebrow {
    margin: 0 0 0.85rem;
    color: #9aa0b5;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

html[dir="rtl"] .security-eyebrow {
    letter-spacing: 0.06em;
}

.security-section h2 {
    margin: 0 auto;
    max-width: 18ch;
    font-family: var(--k-display);
    font-size: clamp(1.7rem, 3.4vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.security-copy {
    margin: 0.85rem auto 1.5rem;
    max-width: 38rem;
    color: #9aa0b5;
    font-size: 1rem;
    line-height: 1.65;
}

.security-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.security-card {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    padding: 1.35rem 0.9rem 1.2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.security-card-icon {
    width: 2.35rem;
    height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: #2a2158;
    color: #c4b5fd;
}

.security-card-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.security-card h3 {
    margin: 0;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 860px) {
    .security-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ask-ai-section {
        padding: 1.75rem var(--page-pad) 1rem;
    }

    .ask-ai-icon {
        width: 3.05rem;
        height: 3.05rem;
        border-radius: 0.95rem;
    }

    .security-section {
        padding: 2rem var(--page-pad) 2.15rem;
    }

    .security-cards {
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
    }
}

.social-fab {
    position: fixed;
    right: 1.15rem;
    left: auto;
    bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    overflow: visible;
    pointer-events: none;
}

.social-fab-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.25s ease;
}

.social-fab.is-open .social-fab-links {
    max-height: 18rem;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transform: none;
}

.social-fab-link {
    width: 3.05rem;
    height: 3.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(10, 58, 92, 0.22);
}

.social-fab-link svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: currentColor;
}

.social-fab-link--whatsapp { background: #25d366; }
.social-fab-link--instagram { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%); }
.social-fab-link--telegram { background: #229ed9; }
.social-fab-link--messenger { background: #006aff; }

.social-fab-trigger {
    position: relative;
    width: 3.55rem;
    height: 3.55rem;
    padding: 0.55rem;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 14px 32px rgba(10, 58, 92, 0.24);
    cursor: pointer;
    pointer-events: auto;
}

.social-fab-trigger-grid,
.social-fab-trigger-close {
    position: absolute;
    inset: 0.55rem;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.social-fab-trigger-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.22rem;
}

.social-fab-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.social-fab-mini svg {
    width: 0.7rem;
    height: 0.7rem;
    fill: currentColor;
}

.social-fab-trigger-close {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    opacity: 0;
    transform: scale(0.6);
}

.social-fab.is-open .social-fab-trigger-grid {
    opacity: 0;
    transform: scale(0.6);
}

.social-fab.is-open .social-fab-trigger-close {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 640px) {
    .social-fab {
        right: 0.8rem;
        bottom: max(0.95rem, env(safe-area-inset-bottom, 0px));
    }
}
