/* =========================================================
   CONFİNALITY CAREERS
   PREMIUM BLACK + ORANGE DESIGN
========================================================= */

:root {
    --black: #050505;
    --black-2: #080808;
    --black-3: #0d0d0d;
    --card: #111111;

    --orange: #ff6500;
    --orange-light: #ff8a24;
    --orange-dark: #b83f00;

    --white: #ffffff;
    --text: #eeeeee;
    --muted: #8b8b8b;
    --muted-2: #555555;

    --border: rgba(255,255,255,.10);

    --container: 1240px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--black);
    color: var(--white);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container,
.nav-container,
.hero-container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {
    position: fixed;

    inset: 0;

    z-index: 99999;

    background: var(--black);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    transition:
        opacity .8s ease,
        visibility .8s ease;
}


.page-loader.hidden {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


.loader-logo {
    width: 65px;
    height: 65px;

    border: 2px solid var(--orange);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);

    font-size: 28px;

    font-weight: 900;

    box-shadow:
        0 0 25px
        rgba(255,101,0,.25);
}


.loader-line {
    width: 140px;

    height: 2px;

    margin-top: 25px;

    background:
        rgba(255,255,255,.12);

    overflow: hidden;
}


.loader-line span {
    display: block;

    width: 0;
    height: 100%;

    background: var(--orange);

    animation:
        loading 1.5s
        cubic-bezier(.65,0,.35,1)
        forwards;
}


@keyframes loading {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 5000;

    transition:
        background .4s ease,
        border .4s ease,
        backdrop-filter .4s ease;
}


.navbar.scrolled {
    background:
        rgba(5,5,5,.78);

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid var(--border);
}


.nav-container {
    height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;

    gap: 12px;
}


.logo-symbol {
    width: 38px;
    height: 38px;

    border: 1.5px solid var(--orange);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--orange);

    font-size: 20px;

    font-weight: 900;

    box-shadow:
        0 0 18px
        rgba(255,101,0,.15);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.logo:hover .logo-symbol {
    transform:
        rotate(180deg);

    box-shadow:
        0 0 30px
        rgba(255,101,0,.4);
}


.logo-text {
    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;
}


/* =========================================================
   PREMIUM HEADER NAV BUTTONS — FINAL DARK ORANGE
========================================================= */

/* =========================================================
   NAV — PREMIUM HOVER + ACTIVE BUTTONS
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 9px;
}


/* DEFAULT */

.nav-links a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 17px;

    color: #888;

    background: transparent;

    border: 1px solid transparent;

    border-radius: 22px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


/* =========================================================
   HOVER — ORANGE
========================================================= */

.nav-links a:hover {
    color: #ffffff !important;

    background: #ff6500 !important;

    border-color: #ff6500 !important;

    box-shadow:
        0 4px 12px rgba(255, 101, 0, .22);

    transform: translateY(-1px);
}


/* =========================================================
   ACTIVE — STAYS ORANGE
========================================================= */

.nav-links a.active {
    color: #ffffff !important;

    background: #ff6500 !important;

    border-color: #ff6500 !important;

    box-shadow:
        0 4px 12px rgba(255, 101, 0, .22);
}


/* ACTIVE HOVER */

.nav-links a.active:hover {
    color: #ffffff !important;

    background: #ff6500 !important;

    border-color: #ff6500 !important;

    transform: translateY(-1px);
}


/* REMOVE OLD UNDERLINES / DOTS */

.nav-links a::before,
.nav-links a::after {
    display: none !important;
}


/* =========================================================
   NAV BUTTON
========================================================= */

.nav-button {
    display: flex;

    align-items: center;

    gap: 15px;

    padding:
        12px 18px;

    border:
        1px solid
        rgba(255,255,255,.18);

    font-size: 12px;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.nav-button span {
    color: var(--orange);

    font-size: 17px;
}


.nav-button:hover {
    background: var(--orange);

    border-color: var(--orange);

    transform:
        translateY(-2px);
}


.nav-button:hover span {
    color: white;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border:
        1px solid
        rgba(255,255,255,.15);

    background: transparent;

    cursor: pointer;

    position: relative;
}


.menu-button span {
    position: absolute;

    left: 11px;

    width: 18px;
    height: 1px;

    background: white;

    transition:
        transform .3s ease;
}


.menu-button span:first-child {
    top: 16px;
}


.menu-button span:last-child {
    top: 24px;
}


.menu-button.active span:first-child {
    transform:
        rotate(45deg)
        translate(
            3px,
            3px
        );
}


.menu-button.active span:last-child {
    transform:
        rotate(-45deg)
        translate(
            3px,
            -3px
        );
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 4000;

    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(255,101,0,.12),
            transparent 35%
        ),
        var(--black);

    transform:
        translateY(-100%);

    transition:
        transform .7s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );
}


.mobile-menu.active {
    transform:
        translateY(0);
}


.mobile-menu-inner {
    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 22px;

    padding: 40px;
}


.mobile-menu-inner a {
    font-size: 42px;

    font-weight: 800;

    letter-spacing: -2px;

    transition:
        color .3s ease;
}


.mobile-menu-inner a:hover {
    color: var(--orange);
}


.mobile-cta {
    color: var(--orange);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--black);
}


.hero-background {
    position: absolute;

    inset: 0;

    overflow: hidden;
}


/* =========================================================
   HERO GRID
========================================================= */

.hero-grid {
    position: absolute;

    inset: -100px;

    opacity: .16;

    background-image:

        linear-gradient(
            rgba(255,255,255,.08)
            1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.08)
            1px,
            transparent 1px
        );

    background-size:
        70px 70px;

    transform:
        perspective(600px)
        rotateX(55deg)
        scale(1.5);

    transform-origin:
        center bottom;

    mask-image:
        radial-gradient(
            circle at center,
            black 15%,
            transparent 70%
        );

    animation:
        gridMove 18s
        linear infinite;
}


@keyframes gridMove {

    from {
        background-position:
            0 0;
    }

    to {
        background-position:
            70px 70px;
    }

}


/* =========================================================
   ORANGE GLOWS
========================================================= */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter:
        blur(120px);

    pointer-events: none;
}


.glow-one {
    width: 600px;
    height: 600px;

    right: -220px;
    top: -250px;

    background: var(--orange);

    opacity: .16;

    animation:
        glowMoveOne 8s
        ease-in-out infinite;
}


.glow-two {
    width: 500px;
    height: 500px;

    left: -250px;
    bottom: -250px;

    background: #ff4500;

    opacity: .10;

    animation:
        glowMoveTwo 10s
        ease-in-out infinite;
}


.glow-three {
    width: 300px;
    height: 300px;

    left: 45%;
    top: 45%;

    background: var(--orange);

    opacity: .06;

    animation:
        glowMoveThree 7s
        ease-in-out infinite;
}


@keyframes glowMoveOne {

    0%,
    100% {
        transform:
            translate(
                0,
                0
            );
    }

    50% {
        transform:
            translate(
                -60px,
                50px
            );
    }

}


@keyframes glowMoveTwo {

    0%,
    100% {
        transform:
            translate(
                0,
                0
            );
    }

    50% {
        transform:
            translate(
                80px,
                -50px
            );
    }

}


@keyframes glowMoveThree {

    0%,
    100% {
        transform:
            scale(1);
    }

    50% {
        transform:
            scale(1.5);
    }

}


/* =========================================================
   MOUSE LIGHT
========================================================= */

.mouse-light {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,101,0,.14),
            rgba(255,101,0,.04)
            35%,
            transparent 70%
        );

    transform:
        translate(-50%, -50%);

    pointer-events: none;

    left: 50%;
    top: 50%;

    transition:
        left .15s ease,
        top .15s ease;
}


/* =========================================================
   NOISE
========================================================= */

.noise {
    position: absolute;

    inset: 0;

    opacity: .035;

    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.6'/%3E%3C/svg%3E");
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    align-items: center;

    gap: 60px;

    padding-top: 80px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 10;
}


.hero-eyebrow {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #858585;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 28px;
}


.live-dot {
    width: 7px;
    height: 7px;

    background:
        var(--orange);

    border-radius: 50%;

    box-shadow:
        0 0 15px
        var(--orange);

    animation:
        livePulse 2s
        ease-in-out infinite;
}


@keyframes livePulse {

    0%,
    100% {
        opacity: 1;

        transform:
            scale(1);
    }

    50% {
        opacity: .4;

        transform:
            scale(.7);
    }

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {
    font-size:
        clamp(
            75px,
            9vw,
            145px
        );

    line-height: .82;

    letter-spacing:
        -7px;

    font-weight: 900;
}


.hero-title span {
    display: block;

    opacity: 0;

    transform:
        translateY(90px);
}


.hero-title.loaded span {
    opacity: 1;

    transform:
        translateY(0);

    transition:
        opacity 1s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        ),

        transform 1s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );
}


.hero-title.loaded span:nth-child(1) {
    transition-delay:
        .1s;
}


.hero-title.loaded span:nth-child(2) {
    transition-delay:
        .22s;
}


.hero-title.loaded span:nth-child(3) {
    transition-delay:
        .34s;
}


.orange {
    color: var(--orange);

    text-shadow:
        0 0 50px
        rgba(255,101,0,.12);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {
    max-width: 500px;

    margin-top: 38px;

    color: #888;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 35px;
}


.primary-button {
    display: flex;

    align-items: center;

    gap: 28px;

    padding:
        17px 20px;

    background:
        var(--orange);

    color: white;

    font-size: 12px;

    font-weight: 700;

    transition:
        background .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}


.primary-button:hover {
    background:
        var(--orange-light);

    box-shadow:
        0 0 40px
        rgba(255,101,0,.25);
}


.button-arrow {
    font-size: 18px;
}


.secondary-button {
    color: #888;

    font-size: 12px;

    transition:
        color .3s ease;
}


.secondary-button span {
    color: var(--orange);

    margin-left: 8px;
}


.secondary-button:hover {
    color: white;
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 55px;
}


.hero-stat {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.hero-stat strong {
    font-size: 19px;
}


.hero-stat span {
    color: #5d5d5d;

    font-size: 9px;

    text-transform:
        uppercase;

    letter-spacing: 1.5px;
}


.stat-line {
    width: 1px;
    height: 30px;

    background:
        #292929;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    height: 650px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}

/* =========================================================
   AI VOICE CORE
========================================================= */

.ai-voice-core {
    width: 350px;
    height: 350px;
    position: relative;
    perspective: 800px;
}
/* =========================================================
   MAIN AI VOICE CORE
========================================================= */

.ai-voice-core .orb-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 155px;
    height: 155px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #fff3df 0%,
            #ffb15c 8%,
            #ff6500 28%,
            #e94b00 55%,
            #8f2600 82%,
            #351000 100%
        );

    border:
        2px solid rgba(255,150,70,.45);

    box-shadow:
        0 0 20px rgba(255,101,0,.75),
        0 0 55px rgba(255,101,0,.50),
        0 0 110px rgba(255,101,0,.30),
        0 0 180px rgba(255,101,0,.15);

    z-index: 4;

    animation:
        aiCorePulse 3.5s ease-in-out infinite;
}

/* Bright AI center highlight */

.ai-voice-core .orb-core::before {
    content: "";

    position: absolute;

    width: 45px;
    height: 45px;

    left: 25px;
    top: 20px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.95) 0%,
            rgba(255,220,180,.65) 25%,
            rgba(255,255,255,0) 75%
        );

    filter: blur(3px);

    opacity: .9;
}

/* Soft outer AI aura */

.ai-voice-core .orb-core::after {
    content: "";

    position: absolute;

    inset: -22px;

    border-radius: 50%;

    border: 1px solid rgba(255,101,0,.22);

    box-shadow:
        inset 0 0 35px rgba(255,101,0,.15);

    animation:
        coreAura 3.5s ease-in-out infinite;
}

@keyframes aiCorePulse {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.045);
    }

}

@keyframes coreAura {

    0%,
    100% {
        transform: scale(.92);
        opacity: .35;
    }

    50% {
        transform: scale(1.08);
        opacity: .75;
    }

}

/* Keep the original glowing AI core */
.ai-voice-core .orb-core {
    z-index: 4;
}

/* Voice pulse rings */
.voice-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255,101,0,.28);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(.55);
    opacity: 0;
    pointer-events: none;
}

.pulse-one {
    animation: voicePulse 3.2s ease-out infinite;
}

.pulse-two {
    animation: voicePulse 3.2s ease-out 1.05s infinite;
}

.pulse-three {
    animation: voicePulse 3.2s ease-out 2.1s infinite;
}

@keyframes voicePulse {

    0% {
        transform: translate(-50%, -50%) scale(.55);
        opacity: 0;
    }

    15% {
        opacity: .55;
    }

    75% {
        opacity: .16;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.65);
        opacity: 0;
    }

}

/* AI Voice Waveform */
.voice-wave {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 8;

    width: 120px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.voice-wave span {
    width: 4px;

    border-radius: 99px;

    background: rgba(255,255,255,.92);

    box-shadow:
        0 0 12px rgba(255,101,0,.65);

    animation:
        voiceBars 1.15s ease-in-out infinite;
}

.voice-wave span:nth-child(1) {
    height: 20px;
    animation-delay: -.85s;
}

.voice-wave span:nth-child(2) {
    height: 34px;
    animation-delay: -.70s;
}

.voice-wave span:nth-child(3) {
    height: 50px;
    animation-delay: -.55s;
}

.voice-wave span:nth-child(4) {
    height: 65px;
    animation-delay: -.40s;
}

.voice-wave span:nth-child(5) {
    height: 42px;
    animation-delay: -.25s;
}

.voice-wave span:nth-child(6) {
    height: 68px;
    animation-delay: -.10s;
}

.voice-wave span:nth-child(7) {
    height: 48px;
    animation-delay: .05s;
}

.voice-wave span:nth-child(8) {
    height: 32px;
    animation-delay: .20s;
}

.voice-wave span:nth-child(9) {
    height: 20px;
    animation-delay: .35s;
}

@keyframes voiceBars {

    0%,
    100% {
        transform: scaleY(.45);
        opacity: .55;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        13px 16px;

    min-width: 155px;

    background:
        rgba(15,15,15,.68);

    border:
        1px solid
        rgba(255,255,255,.10);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.35);

    transition:
        border-color .3s ease;
}


.floating-card:hover {
    border-color:
        rgba(255,101,0,.5);
}


.floating-icon {
    color:
        var(--orange);

    font-size: 19px;
}


.floating-card strong {
    display: block;

    font-size: 14.3px; /* 30% increase from 11px */

    font-weight: 700;
}

.floating-card small {
    display: block;

    margin-top: 4px;

    color: #666;

    font-size: 11.7px; /* 30% increase from 9px */
}


.card-one {
    right: 0;
    top: 120px;

    animation:
        floatOne 5s
        ease-in-out infinite;
}


.card-two {
    left: 0;
    top: 330px;

    animation:
        floatTwo 6s
        ease-in-out infinite;
}


.card-three {
    right: 70px;
    bottom: 100px;

    animation:
        floatThree 7s
        ease-in-out infinite;
}


@keyframes floatOne {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-18px);
    }

}


@keyframes floatTwo {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(20px);
    }

}


@keyframes floatThree {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-15px);
    }

}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;

    z-index: 10;

    left: 50%;

    bottom: 28px;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

    color: #555;

    font-size: 8px;

    letter-spacing: 2px;
}


.scroll-line {
    width: 1px;

    height: 45px;

    background:
        #292929;

    overflow: hidden;
}


.scroll-line span {
    display: block;

    width: 100%;
    height: 35%;

    background:
        var(--orange);

    animation:
        scrollAnimation 2s
        ease-in-out infinite;
}


@keyframes scrollAnimation {

    0% {
        transform:
            translateY(-150%);
    }

    50% {
        transform:
            translateY(150%);
    }

    100% {
        transform:
            translateY(300%);
    }

}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);
}


.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);

    transition:
        opacity .9s ease,
        transform .9s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        );
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    position: relative;

    padding:
        170px 0;

    background:
        #090909;
}


.section-label {
    display: flex;

    align-items: center;

    gap: 18px;

    color: #666;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.section-label span {
    color:
        var(--orange);
}


.about-heading {
    max-width: 1050px;

    margin-top: 65px;

    font-size:
        clamp(
            50px,
            7vw,
            100px
        );

    line-height: .95;

    letter-spacing:
        -5px;
}


.about-heading span {
    color:
        var(--orange);
}


.about-bottom {
    display: flex;

    align-items: flex-end;

    justify-content:
        space-between;

    gap: 50px;

    margin-top: 75px;
}


.about-bottom p {
    max-width: 500px;

    color: #707070;

    font-size: 15px;

    line-height: 1.8;
}


.outline-button {
    border:
        1px solid
        #333;

    padding:
        14px 20px;

    font-size: 11px;

    transition:
        border-color .3s ease,
        color .3s ease;
}


.outline-button:hover {
    border-color:
        var(--orange);

    color:
        var(--orange);
}


/* =========================================================
   PLACEHOLDER SECTIONS
========================================================= */

.placeholder-section {
    min-height: 75vh;

    padding:
        150px 0;

    display: flex;

    align-items: center;

    background:
        var(--black);
}


.placeholder-section:nth-child(even) {
    background:
        #090909;
}


.placeholder-section .container > span {
    color:
        var(--orange);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.placeholder-section h2 {
    max-width: 900px;

    margin-top: 35px;

    font-size:
        clamp(
            55px,
            8vw,
            115px
        );

    line-height: .9;

    letter-spacing:
        -6px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding:
        90px 0 30px;

    background:
        #030303;

    border-top:
        1px solid #151515;
}


.footer-brand p {
    margin-top: 18px;

    color:
        #555;

    font-size: 12px;
}


.footer-bottom {
    margin-top: 80px;

    padding-top: 20px;

    border-top:
        1px solid #161616;

    color:
        #444;

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .container,
    .nav-container,
    .hero-container {
        width:
            calc(100% - 50px);
    }


    .nav-links {
        display: none;
    }


    .menu-button {
        display: block;
    }


    .hero-container {
        grid-template-columns:
            1fr;

        padding-top: 130px;
    }


    .hero-visual {
        height: 500px;
    }


    .hero-title {
        font-size:
            clamp(
                75px,
                13vw,
                120px
            );
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container,
    .nav-container,
    .hero-container {
        width:
            calc(100% - 36px);
    }


    .nav-container {
        height: 74px;
    }


    .nav-button {
        display: none;
    }


    .logo-text {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .hero {
        min-height:
            100svh;
    }


    .hero-container {
        padding-top: 110px;
    }


    .hero-title {
        font-size:
            64px;

        letter-spacing:
            -4px;
    }


    .hero-description {
        font-size:
            14px;

        margin-top:
            30px;
    }


    .hero-buttons {
        flex-direction:
            column;

        align-items:
            flex-start;
    }


    .hero-stats {
        margin-top:
            42px;

        gap: 15px;
    }


    .hero-visual {
        height:
            360px;
    }


    .ai-orb {
        width:
            250px;

        height:
            250px;
    }


    .orb-core {
        width:
            85px;

        height:
            85px;
    }


    .floating-card {
        transform:
            scale(.85);
    }


    .card-one {
        top:
            20px;

        right:
            -5px;
    }


    .card-two {
        left:
            -5px;

        top:
            200px;
    }


    .card-three {
        right:
            10px;

        bottom:
            0;
    }


    .scroll-indicator {
        display:
            none;
    }


    .about-section,
    .placeholder-section {
        padding:
            100px 0;
    }


    .about-heading {
        font-size:
            48px;

        letter-spacing:
            -3px;
    }


    .about-bottom {
        flex-direction:
            column;

        align-items:
            flex-start;
    }


    .placeholder-section {
        min-height:
            60vh;
    }


    .placeholder-section h2 {
        font-size:
            55px;

        letter-spacing:
            -3px;
    }


    .mobile-menu-inner a {
        font-size:
            36px;
    }

}
/* =========================================================
   PARTICLES
========================================================= */

.particle {
    position: absolute;

    display: block;

    border-radius: 50%;

    background: var(--orange);

    opacity: 0;

    box-shadow:
        0 0 10px var(--orange);

    animation:
        particleFloat
        linear
        infinite;
}


@keyframes particleFloat {

    0% {
        opacity: 0;

        transform:
            translateY(30px)
            scale(.5);
    }

    20% {
        opacity: .6;
    }

    80% {
        opacity: .3;
    }

    100% {
        opacity: 0;

        transform:
            translateY(-120px)
            scale(1);
    }

}
/* =========================================================
   HORIZONTAL HIRING JOURNEY — PREMIUM CARD LAYOUT
========================================================= */

.journey-section {
    position: relative;
    padding: 150px 0 170px;
    background: #050505;
    overflow: hidden;
}

/* Background glow */
.journey-section::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 35%;
    top: 10%;

    background: rgba(255, 101, 0, 0.055);

    filter: blur(150px);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.journey-header {
    position: relative;

    z-index: 2;

    max-width: 850px;
}


.journey-header h2 {
    margin-top: 45px;

    font-size:
        clamp(55px, 7vw, 100px);

    line-height: 0.92;

    letter-spacing: -5px;
}


.journey-header h2 span {
    color: var(--orange);
}


.journey-header p {
    max-width: 600px;

    margin-top: 30px;

    color: #707070;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   TIMELINE WRAPPER
========================================================= */

.journey-timeline {

    position: relative;

    display: flex;

    gap: 22px;

    margin-top: 105px;

    padding:
        65px 0 20px;

    overflow-x: auto;

    overflow-y: visible;

    scroll-behavior: smooth;

    scrollbar-width: none;
}


.journey-timeline::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   HORIZONTAL LINE
========================================================= */

.journey-progress {

    position: absolute;

    left: 0;

    top: 47px;

    width: 100%;

    height: 2px;

    background:
        rgba(255, 101, 0, 0.28);

    z-index: 1;
}


.journey-progress-fill {

    position: absolute;

    left: 0;

    top: 0;

    width: 0%;

    height: 100%;

    background:
        var(--orange);

    box-shadow:
        0 0 12px
        rgba(255, 101, 0, 0.65);

    transition:
        width .15s linear;
}


/* =========================================================
   JOURNEY ITEM
========================================================= */

.journey-item {

    position: relative;

    flex: 1 0 0;
min-width: 180px;

    min-height: 385px;

    padding-top: 0;

    z-index: 2;
}


/* =========================================================
   NUMBER CIRCLE
========================================================= */

.journey-number {

    position: absolute;

    z-index: 10;

    left: 50%;

    top: -65px;

    transform:
        translateX(-50%);

    width: 82px;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        2px solid
        var(--orange);

    border-radius: 50%;

    background:
        #070707;

    color:
        var(--orange);

    font-size: 18px;

    font-weight: 900;

    box-shadow:
        0 0 0 8px
        #050505,

        0 0 25px
        rgba(255,101,0,.18);

    transition:
        transform .4s ease,

        box-shadow .4s ease,

        background .4s ease;
}


.journey-item.active
.journey-number {

    background:
        #0b0b0b;

    box-shadow:
        0 0 0 8px #050505,

        0 0 35px
        rgba(255,101,0,.35);
}


.journey-card:hover
~ * {
    /* intentionally empty */
}


/* =========================================================
   CARD
========================================================= */

.journey-card {

    position: relative;

    width: 100%;

    height: 385px;

    padding:
        105px 30px 30px;

    display: flex;

    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.015)
        );

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius:
        32px;

    overflow: hidden;

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.04),

        0 20px 50px
        rgba(0,0,0,.25);

    transition:
        transform .5s
        cubic-bezier(
            .16,
            1,
            .3,
            1
        ),

        border-color .4s ease,

        box-shadow .4s ease;
}


/* =========================================================
   CARD TOP GLOW
========================================================= */

.journey-card::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 180px;

    left: 50%;

    top: -100px;

    transform:
        translateX(-50%);

    background:
        rgba(255,101,0,.13);

    filter:
        blur(65px);

    opacity: .35;

    transition:
        opacity .5s ease;
}


.journey-card:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(255,101,0,.38);

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.06),

        0 30px 70px
        rgba(0,0,0,.45),

        0 0 35px
        rgba(255,101,0,.08);
}


.journey-card:hover::before {

    opacity: .75;

}


/* =========================================================
   CARD TOP LABEL
========================================================= */

.journey-card-top {

    position: absolute;

    top: 24px;

    left: 30px;

    right: 30px;

    display: flex;

    justify-content:
        space-between;

    align-items: center;

    color:
        #555;

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        1.5px;
}


.journey-card-top span:last-child {

    color:
        var(--orange);

}


/* =========================================================
   ICON
========================================================= */

.journey-icon {

    width:
        58px;

    height:
        58px;

    flex-shrink: 0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(255,101,0,.30);

    border-radius:
        18px;

    background:
        rgba(255,101,0,.08);

    color:
        var(--orange);

    font-size:
        25px;

    transition:
        transform .5s ease,

        background .5s ease,

        box-shadow .5s ease;
}


.journey-card:hover
.journey-icon {

    transform:
        rotate(-5deg)
        scale(1.08);

    background:
        rgba(255,101,0,.15);

    box-shadow:
        0 0 25px
        rgba(255,101,0,.12);
}


/* =========================================================
   TITLE
========================================================= */

.journey-card h3 {

    margin-top:
        30px;

    min-height:
        54px;

    display:
        flex;

    align-items:
        center;

    font-size:
        25px;

    line-height:
        1.15;

    letter-spacing:
        -1px;

    text-align:
        center;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.journey-card p {

    margin-top:
        15px;

    color:
        #777;

    font-size:
        13px;

    line-height:
        1.65;

    text-align:
        center;
}


/* =========================================================
   BOTTOM LINE
========================================================= */

.journey-bottom {

    position:
        absolute;

    left:
        30px;

    right:
        30px;

    bottom:
        22px;

    padding-top:
        15px;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    display:
        flex;

    justify-content:
        space-between;

    color:
        #444;

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        1px;
}


.journey-bottom span:first-child {

    color:
        #666;

}


/* =========================================================
   FINAL CARD
========================================================= */

.final-card {

    border-color:
        rgba(255,101,0,.20);

}


.final-card .journey-icon {

    background:
        rgba(255,101,0,.13);

    border-color:
        rgba(255,101,0,.40);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .journey-section {

        padding:
            110px 0 130px;

    }


    .journey-header h2 {

        margin-top:
            35px;

        font-size:
            52px;

        letter-spacing:
            -3px;

    }


    .journey-timeline {

        margin-top:
            90px;

        margin-left:
            -18px;

        margin-right:
            -18px;

        padding-left:
            35px;

        padding-right:
            35px;

        gap:
            18px;

    }


    .journey-item {

        flex:
            0 0 285px;

    }


    .journey-number {

        width:
            72px;

        height:
            72px;

        top:
            -60px;

        font-size:
            16px;

    }


    .journey-card {

        height:
            375px;

        border-radius:
            28px;

    }


    .journey-progress {

        top:
            42px;

    }

}
/* =========================================================
   JOURNEY — FINAL CLEAN FIX
========================================================= */

/* Keep all 6 cards stable */
.journey-item {
    flex: 1 0 0 !important;
    min-width: 220px;
    height: 430px !important;
    min-height: 430px !important;
}


/* Card */
.journey-card {
    width: 100% !important;
    height: 430px !important;
    min-height: 430px !important;

    padding:
        105px 26px 70px !important;

    overflow: hidden !important;

    transform: none;
}


/* Don't make card text change size on hover/click */
.journey-card:hover {
    transform:
        translateY(-8px) !important;
}


/* Step label */
.journey-card-top {
    top: 24px !important;
    left: 26px !important;
    right: 26px !important;
}


/* Icon */
.journey-icon {
    width: 58px !important;
    height: 58px !important;

    flex-shrink: 0 !important;

    font-size: 25px !important;
}


/* Main title */
.journey-card h3 {
    margin-top: 25px !important;

    min-height: 0 !important;

    height: auto !important;

    display: block !important;

    font-size: 23px !important;

    line-height: 1.15 !important;

    letter-spacing: -0.5px !important;

    text-align: center !important;

    font-weight: 800 !important;
}


/* Description */
.journey-card p {
    margin-top: 14px !important;

    font-size: 12px !important;

    line-height: 1.65 !important;

    text-align: center !important;

    color: #777 !important;

    max-width: 205px !important;

    margin-left: auto !important;
    margin-right: auto !important;
}


/* Bottom information */
.journey-bottom {
    position: absolute !important;

    left: 26px !important;
    right: 26px !important;

    bottom: 22px !important;

    height: 28px !important;

    padding-top: 12px !important;

    margin: 0 !important;

    display: flex !important;

    justify-content: space-between !important;

    align-items: flex-start !important;

    border-top:
        1px solid
        rgba(255,255,255,.07) !important;

    font-size: 7px !important;

    line-height: 1 !important;
}


/* Step circles */
.journey-number {
    width: 82px !important;
    height: 82px !important;

    top: -65px !important;

    font-size: 18px !important;

    transform:
        translateX(-50%) !important;
}


/* Don't enlarge step circle on interaction */
.journey-number:hover,
.journey-item:hover .journey-number {
    transform:
        translateX(-50%) !important;
}


/* =========================================================
   REMOVE UNWANTED REVEAL MOVEMENT
========================================================= */

.journey-item.reveal {
    transform: none;
}

.journey-item.reveal.visible {
    transform: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .journey-item {
        flex:
            0 0 285px !important;

        min-width:
            285px !important;

        height:
            410px !important;

        min-height:
            410px !important;
    }


    .journey-card {
        height:
            410px !important;

        min-height:
            410px !important;

        padding:
            100px 24px 65px !important;
    }


    .journey-card h3 {
        font-size:
            22px !important;
    }


    .journey-card p {
        font-size:
            11.5px !important;

        max-width:
            225px !important;
    }

}
/* ================================
   HIRING JOURNEY - DESKTOP
================================ */

.journey-section {
    min-height: calc(100vh - 100px);
    height: auto;
    padding: 70px 6% 40px;
    box-sizing: border-box;
}

/* Small section label */
.journey-section .section-label {
    margin-bottom: 35px;
}

/* Main heading */
.journey-section h2,
.journey-section .journey-title {
    font-size: clamp(60px, 5.8vw, 105px);
    line-height: 0.95;
    margin: 0 0 35px;
    max-width: 900px;
}

/* Description */
.journey-section .journey-description,
.journey-section > p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 75px;
}

/* Steps wrapper */
.journey-section .journey-steps,
.journey-section .steps-container,
.journey-section .steps {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    align-items: start;
}

/* Horizontal orange line */
.journey-section .journey-steps::before,
.journey-section .steps-container::before,
.journey-section .steps::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 106, 0, 0.45);
    z-index: 0;
}

/* Individual card */
.journey-section .journey-card,
.journey-section .step-card {
    position: relative;
    z-index: 1;
    height: 360px;
    min-height: 360px;
    padding: 70px 28px 25px;
    box-sizing: border-box;
    border-radius: 24px;
}

/* Number circle */
.journey-section .step-number,
.journey-section .number {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* Card title */
.journey-section .journey-card h3,
.journey-section .step-card h3 {
    font-size: 24px;
    line-height: 1.15;
    margin: 25px 0 15px;
}

/* Card description */
.journey-section .journey-card p,
.journey-section .step-card p {
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

    .journey-section {
        min-height: auto;
        padding: 60px 20px;
    }

    .journey-section h2,
    .journey-section .journey-title {
        font-size: 52px;
    }

    .journey-section .journey-description,
    .journey-section > p {
        font-size: 15px;
        margin-bottom: 55px;
    }

    .journey-section .journey-steps,
    .journey-section .steps-container,
    .journey-section .steps {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .journey-section .journey-steps::before,
    .journey-section .steps-container::before,
    .journey-section .steps::before {
        display: none;
    }

    .journey-section .journey-card,
    .journey-section .step-card {
        height: auto;
        min-height: 350px;
    }
}

/* =========================================================
   FINAL FIX — HIRING JOURNEY DESKTOP / ONE-SCREEN LAYOUT
   This override is intentionally placed at the END so it
   wins over the older duplicate journey rules above.
========================================================= */

@media (min-width: 1201px) {

    /* Keep the whole journey compact enough to appear together */
    .journey-section,
    #joinus {
        min-height: calc(100vh - 88px) !important;
        height: auto !important;
        padding: 38px 5% 28px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Heading area */
    .journey-header,
    #joinus .journey-header {
        max-width: 760px !important;
    }

    .journey-header h2,
    .journey-section h2,
    .journey-section .journey-title,
    #joinus h1,
    #joinus h2 {
        font-size: clamp(58px, 4.2vw, 72px) !important;
        line-height: .90 !important;
        letter-spacing: -3.5px !important;
        margin-top: 16px !important;
        margin-bottom: 0 !important;
        max-width: 760px !important;
    }

    .journey-header p,
    .journey-section .journey-description,
    .journey-section > p,
    #joinus > p {
        max-width: 620px !important;
        margin-top: 18px !important;
        margin-bottom: 0 !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    /* Timeline version */
    .journey-timeline {
        width: 100% !important;
        display: flex !important;
        gap: 14px !important;
        margin-top: 58px !important;
        padding: 50px 0 8px !important;
        overflow: visible !important;
        align-items: stretch !important;
    }

    .journey-progress {
        top: 36px !important;
        height: 2px !important;
    }

    .journey-item {
        flex: 1 1 0 !important;
        width: auto !important;
        min-width: 0 !important;
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        padding: 0 !important;
    }

    .journey-number {
        width: 66px !important;
        height: 66px !important;
        top: -50px !important;
        font-size: 15px !important;
        box-shadow:
            0 0 0 6px #050505,
            0 0 22px rgba(255,101,0,.18) !important;
    }

    .journey-card,
    .journey-section .journey-card,
    .journey-section .step-card {
        width: 100% !important;
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        padding: 76px 18px 42px !important;
        border-radius: 24px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        transform: none !important;
    }

    /* Never enlarge/shift the card when it is clicked or active */
    .journey-item.active .journey-card,
    .journey-card.active,
    .journey-card:active {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        transform: none !important;
        scale: 1 !important;
    }

    .journey-card:hover {
        transform: translateY(-5px) !important;
    }

    .journey-card-top {
        top: 18px !important;
        left: 18px !important;
        right: 18px !important;
        font-size: 7px !important;
        letter-spacing: 1.2px !important;
    }

    .journey-icon {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
        border-radius: 14px !important;
        font-size: 21px !important;
    }

    .journey-card h3,
    .journey-section .journey-card h3,
    .journey-section .step-card h3 {
        margin: 18px 0 0 !important;
        min-height: 0 !important;
        height: auto !important;
        display: block !important;
        font-size: 18px !important;
        line-height: 1.16 !important;
        letter-spacing: -.4px !important;
        font-weight: 800 !important;
        text-align: center !important;
    }

    .journey-card p,
    .journey-section .journey-card p,
    .journey-section .step-card p {
        margin: 10px auto 0 !important;
        max-width: 190px !important;
        font-size: 10.5px !important;
        line-height: 1.55 !important;
        text-align: center !important;
        overflow: visible !important;
    }

    .journey-bottom {
        left: 18px !important;
        right: 18px !important;
        bottom: 16px !important;
        height: 20px !important;
        padding-top: 8px !important;
        font-size: 6px !important;
        line-height: 1 !important;
    }

    /* Roadmap/grid version — also force six cards horizontally */
    #joinus .journey-wrapper {
        margin-top: 42px !important;
        padding: 10px 0 !important;
    }

    #joinus .journey-grid {
        display: grid !important;
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
        gap: 14px !important;
        width: 100% !important;
        align-items: stretch !important;
    }

    #joinus .journey-line {
        top: 36px !important;
        left: 5% !important;
        right: 5% !important;
    }

    #joinus .journey-card {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        padding: 76px 18px 30px !important;
        border-radius: 24px !important;
        overflow: hidden !important;
        transform: none !important;
    }

    #joinus .journey-card.top,
    #joinus .journey-card.bottom,
    #joinus .journey-card.active {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        transform: none !important;
    }

    #joinus .step-no {
        top: 16px !important;
        left: 18px !important;
        font-size: 7px !important;
        margin-bottom: 0 !important;
    }

    #joinus .journey-icon {
        width: 46px !important;
        height: 46px !important;
        margin: 0 0 18px !important;
        font-size: 21px !important;
    }

    #joinus .journey-card h3 {
        font-size: 18px !important;
        line-height: 1.16 !important;
        margin: 0 0 10px !important;
    }

    #joinus .journey-card p {
        font-size: 10.5px !important;
        line-height: 1.55 !important;
        margin: 0 !important;
    }
}


/* =========================================================
   TABLET — compact but still readable
========================================================= */
@media (min-width: 701px) and (max-width: 1200px) {

    .journey-section,
    #joinus {
        padding: 70px 30px 80px !important;
        min-height: auto !important;
    }

    .journey-header h2,
    .journey-section h2,
    .journey-section .journey-title {
        font-size: clamp(48px, 7vw, 70px) !important;
        letter-spacing: -3px !important;
    }

    .journey-timeline {
        margin-top: 80px !important;
        gap: 16px !important;
        overflow-x: auto !important;
        padding-top: 55px !important;
    }

    .journey-item {
        flex: 0 0 220px !important;
        min-width: 220px !important;
        height: 340px !important;
        min-height: 340px !important;
    }

    .journey-card {
        height: 340px !important;
        min-height: 340px !important;
        padding: 82px 20px 45px !important;
    }

    #joinus .journey-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }
}


/* =========================================================
   MOBILE — keep the original horizontal scrolling behavior
========================================================= */
@media (max-width: 700px) {

    .journey-section,
    #joinus {
        min-height: auto !important;
        height: auto !important;
        padding: 90px 18px 110px !important;
    }

    .journey-header h2,
    .journey-section h2,
    .journey-section .journey-title {
        font-size: 44px !important;
        line-height: .92 !important;
        letter-spacing: -2.5px !important;
    }

    .journey-header p,
    .journey-section .journey-description,
    .journey-section > p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    .journey-timeline {
        margin-top: 75px !important;
        gap: 16px !important;
        padding: 55px 25px 15px !important;
        margin-left: -18px !important;
        margin-right: -18px !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
    }

    .journey-item {
        flex: 0 0 270px !important;
        min-width: 270px !important;
        width: 270px !important;
        height: 390px !important;
        min-height: 390px !important;
        max-height: 390px !important;
    }

    .journey-card {
        height: 390px !important;
        min-height: 390px !important;
        max-height: 390px !important;
        padding: 92px 22px 55px !important;
    }

    .journey-card h3 {
        font-size: 21px !important;
    }

    .journey-card p {
        font-size: 11.5px !important;
        max-width: 220px !important;
    }

    #joinus .journey-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    #joinus .journey-card {
        height: auto !important;
        min-height: 320px !important;
        max-height: none !important;
    }
}


/* =========================================================
   FINAL FIX — "FROM APPLICATION" TOP CLIPPING
========================================================= */

@media (min-width: 1201px) {

    .journey-section {
        overflow-x: hidden !important;
        overflow-y: visible !important;
        padding-top: 72px !important;
        padding-bottom: 28px !important;
        box-sizing: border-box !important;
    }

    .journey-section > .container {
        overflow: visible !important;
    }

    .journey-header {
        position: relative !important;
        z-index: 20 !important;
        overflow: visible !important;
        max-width: 760px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .journey-header h2 {
        display: block !important;
        position: relative !important;
        z-index: 21 !important;

        margin: 0 !important;
        padding: 0 !important;

        font-size: clamp(58px, 4.2vw, 72px) !important;
        line-height: .94 !important;
        letter-spacing: -3.5px !important;

        max-width: 760px !important;

        overflow: visible !important;
        clip-path: none !important;
    }

    .journey-header h2 span {
        display: inline !important;
    }

    .journey-header p {
        position: relative !important;
        z-index: 20 !important;

        margin: 20px 0 0 !important;
        padding: 0 !important;

        max-width: 620px !important;

        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .journey-timeline {
        margin-top: 50px !important;
    }
}

@media (max-width: 1200px) {

    .journey-section {
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }

    .journey-header {
        overflow: visible !important;
    }

    .journey-header h2 {
        overflow: visible !important;
        clip-path: none !important;
    }
}
/* =========================================================
   FINAL HIRING JOURNEY HEADING FIX
   Prevent "From application" from being clipped
========================================================= */

.journey-section {
    position: relative !important;

    /* Give the heading enough space from the top */
    padding-top: 120px !important;

    /* Keep horizontal overflow controlled */
    overflow-x: hidden !important;

    /* IMPORTANT: don't clip the heading vertically */
    overflow-y: visible !important;

    box-sizing: border-box !important;
}


/* HEADER */
.journey-section .journey-header {
    position: relative !important;
    z-index: 50 !important;

    width: 100% !important;
    max-width: 850px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;
}


/* MAIN HEADING */
.journey-section .journey-header h2 {
    position: relative !important;
    z-index: 51 !important;

    display: block !important;

    margin: 0 !important;
    padding: 8px 0 0 0 !important;

    max-width: 850px !important;

    font-size: clamp(
        58px,
        5.8vw,
        100px
    ) !important;

    line-height: 1 !important;

    letter-spacing: -4px !important;

    overflow: visible !important;

    clip-path: none !important;
}


/* ORANGE IMPACT TEXT */
.journey-section .journey-header h2 span {
    display: inline !important;
    color: var(--orange) !important;
}


/* DESCRIPTION */
.journey-section .journey-header p {
    position: relative !important;
    z-index: 50 !important;

    margin-top: 24px !important;

    max-width: 620px !important;

    font-size: 13px !important;
    line-height: 1.6 !important;

    overflow: visible !important;
}


/* IMPORTANT:
   Your .reveal animation moves elements using translateY().
   Make sure the heading itself is never clipped while loading.
*/
.journey-section .journey-header.reveal {
    overflow: visible !important;
}

.journey-section .journey-header.reveal.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}


/* TIMELINE */
.journey-section .journey-timeline {
    position: relative !important;
    z-index: 10 !important;

    margin-top: 55px !important;

    overflow-x: auto !important;
    overflow-y: visible !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .journey-section {
        padding-top: 90px !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }

    .journey-section .journey-header h2 {
        font-size: 48px !important;
        line-height: 1 !important;
        letter-spacing: -3px !important;
        padding-top: 6px !important;
    }

    .journey-section .journey-header p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-top: 20px !important;
    }

    .journey-section .journey-timeline {
        margin-top: 70px !important;
    }
}
/* =========================================================
   FINAL — HIRING JOURNEY CLEAN LAYOUT
   DO NOT CHANGE HTML
========================================================= */

.journey-section {
    position: relative !important;

    padding:
        70px 0 80px !important;

    overflow-x: hidden !important;
    overflow-y: visible !important;
}


/* =========================================================
   HEADING — SMALL
========================================================= */

.journey-header {
    position: relative !important;

    z-index: 20 !important;

    max-width: 700px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;
}


.journey-header h2 {
    position: relative !important;

    margin: 0 !important;
    padding: 0 !important;

    max-width: 700px !important;

    font-size:
        clamp(42px, 4vw, 60px) !important;

    line-height:
        0.98 !important;

    letter-spacing:
        -2.5px !important;

    overflow: visible !important;

    clip-path: none !important;
}


.journey-header h2 span {
    color:
        var(--orange) !important;
}


.journey-header p {
    margin:
        18px 0 0 !important;

    max-width:
        560px !important;

    font-size:
        12px !important;

    line-height:
        1.55 !important;

    color:
        #707070 !important;
}


/* =========================================================
   TIMELINE
========================================================= */

.journey-timeline {
    position: relative !important;

    display: flex !important;

    gap:
        16px !important;

    margin-top:
        75px !important;

    padding:
        55px 0 20px !important;

    overflow-x:
        auto !important;

    overflow-y:
        visible !important;

    scrollbar-width:
        none !important;
}


.journey-timeline::-webkit-scrollbar {
    display: none !important;
}


/* =========================================================
   PROGRESS LINE
========================================================= */

.journey-progress {
    position: absolute !important;

    top:
        27px !important;

    left:
        0 !important;

    width:
        100% !important;

    height:
        2px !important;

    background:
        rgba(255,101,0,.28) !important;

    z-index:
        1 !important;
}


/* =========================================================
   ITEMS
========================================================= */

.journey-item {
    position: relative !important;

    flex:
        1 1 0 !important;

    min-width:
        205px !important;

    min-height:
        390px !important;

    padding:
        0 !important;

    z-index:
        2 !important;
}


/* =========================================================
   STEP NUMBER
========================================================= */

.journey-number {
    position: absolute !important;

    top:
        -55px !important;

    left:
        50% !important;

    transform:
        translateX(-50%) !important;

    width:
        68px !important;

    height:
        68px !important;

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    border:
        2px solid
        var(--orange) !important;

    border-radius:
        50% !important;

    background:
        #050505 !important;

    color:
        var(--orange) !important;

    font-size:
        16px !important;

    font-weight:
        800 !important;

    z-index:
        10 !important;

    box-shadow:
        0 0 0 7px #050505,
        0 0 22px
        rgba(255,101,0,.20) !important;
}


/* NEVER enlarge number */
.journey-item:hover
.journey-number {

    transform:
        translateX(-50%) !important;
}


/* =========================================================
   CARD
========================================================= */

.journey-card {
    position: relative !important;

    width:
        100% !important;

    height:
        390px !important;

    min-height:
        390px !important;

    box-sizing:
        border-box !important;

    padding:
        82px 20px 50px !important;

    margin:
        0 !important;

    overflow:
        hidden !important;

    border:
        1px solid
        rgba(255,255,255,.10) !important;

    border-radius:
        25px !important;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        ) !important;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.25) !important;

    transform:
        none !important;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease !important;
}


/* =========================================================
   CARD TOP
========================================================= */

.journey-card-top {
    position: absolute !important;

    top:
        20px !important;

    left:
        20px !important;

    right:
        20px !important;

    display:
        flex !important;

    justify-content:
        space-between !important;

    align-items:
        center !important;

    font-size:
        7px !important;

    line-height:
        1 !important;

    letter-spacing:
        1.2px !important;

    color:
        #555 !important;
}


/* =========================================================
   ICON — KEEP COMPACT
========================================================= */

.journey-icon {
    width:
        52px !important;

    height:
        52px !important;

    margin:
        0 auto !important;

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    flex-shrink:
        0 !important;

    border:
        1px solid
        rgba(255,101,0,.30) !important;

    border-radius:
        15px !important;

    background:
        rgba(255,101,0,.08) !important;

    font-size:
        23px !important;

    transform:
        none !important;
}


/* Don't rotate/enlarge icon */
.journey-card:hover
.journey-icon {

    transform:
        none !important;

    box-shadow:
        none !important;
}


/* =========================================================
   TITLE — CONTENT SAFE
========================================================= */

.journey-card h3 {

    margin:
        22px auto 10px !important;

    padding:
        0 !important;

    min-height:
        44px !important;

    display:
        flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    font-size:
        18px !important;

    line-height:
        1.15 !important;

    letter-spacing:
        -.2px !important;

    text-align:
        center !important;

    color:
        #fff !important;

    overflow-wrap:
        normal !important;

    word-break:
        normal !important;
}


/* =========================================================
   DESCRIPTION — NO CUTTING
========================================================= */

.journey-card p {

    margin:
        0 auto !important;

    padding:
        0 !important;

    width:
        100% !important;

    max-width:
        185px !important;

    font-size:
        11px !important;

    line-height:
        1.6 !important;

    text-align:
        center !important;

    color:
        #777 !important;

    overflow:
        visible !important;

    word-break:
        normal !important;

    overflow-wrap:
        normal !important;
}


/* =========================================================
   BOTTOM
========================================================= */

.journey-bottom {

    position:
        absolute !important;

    left:
        20px !important;

    right:
        20px !important;

    bottom:
        17px !important;

    height:
        25px !important;

    padding-top:
        10px !important;

    margin:
        0 !important;

    border-top:
        1px solid
        rgba(255,255,255,.07) !important;

    display:
        flex !important;

    justify-content:
        space-between !important;

    align-items:
        flex-start !important;

    font-size:
        7px !important;

    line-height:
        1 !important;
}


/* =========================================================
   HOVER — ONLY CARD MOVES
========================================================= */

.journey-card:hover {

    transform:
        translateY(-7px) !important;

    border-color:
        rgba(255,101,0,.35) !important;

    box-shadow:
        0 25px 55px
        rgba(0,0,0,.35) !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1201px) {

    .journey-section {

        padding:
            65px 0 70px !important;
    }


    .journey-header h2 {

        font-size:
            54px !important;

        line-height:
            .98 !important;
    }


    .journey-header p {

        font-size:
            12px !important;
    }


    .journey-timeline {

        margin-top:
            68px !important;

        gap:
            14px !important;
    }


    .journey-item {

        min-width:
            190px !important;

        min-height:
            395px !important;
    }


    .journey-card {

        height:
            395px !important;

        min-height:
            395px !important;

        padding:
            82px 16px 50px !important;
    }


    .journey-card h3 {

        font-size:
            17px !important;
    }


    .journey-card p {

        font-size:
            10.5px !important;

        max-width:
            175px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .journey-section {

        padding:
            70px 0 90px !important;
    }


    .journey-header h2 {

        font-size:
            40px !important;

        letter-spacing:
            -2px !important;
    }


    .journey-header p {

        font-size:
            12px !important;
    }


    .journey-timeline {

        margin-top:
            70px !important;

        padding:
            55px 25px 25px !important;

        margin-left:
            -25px !important;

        margin-right:
            -25px !important;
    }


    .journey-item {

        flex:
            0 0 285px !important;

        min-width:
            285px !important;
    }


    .journey-card {

        height:
            395px !important;

        min-height:
            395px !important;

        padding:
            82px 22px 50px !important;
    }


    .journey-card h3 {

        font-size:
            20px !important;
    }


    .journey-card p {

        font-size:
            11.5px !important;

        max-width:
            220px !important;
    }
}
/* HIRING JOURNEY — 30% SMALLER HEADING */

@media (min-width: 1201px) {
    .journey-header h2 {
        font-size: 38px !important;
        line-height: 1 !important;
        letter-spacing: -1.8px !important;
        max-width: 600px !important;
    }

    .journey-header p {
        font-size: 11px !important;
        max-width: 520px !important;
        margin-top: 14px !important;
    }

    .journey-timeline {
        margin-top: 55px !important;
    }
}
/* HIRING JOURNEY — ANOTHER 30% SMALLER */

@media (min-width: 1201px) {

    .journey-header h2 {
        font-size: 20px !important;
        line-height: 1.05 !important;
        letter-spacing: -1px !important;
        max-width: 500px !important;
    }

    .journey-header p {
        font-size: 10px !important;
        line-height: 1.5 !important;
        max-width: 450px !important;
        margin-top: 12px !important;
    }

    .journey-timeline {
        margin-top: 45px !important;
    }
}
/* =========================================================
   FINAL OVERRIDE — HIRING JOURNEY HEADING
========================================================= */

@media (min-width: 1201px) {

    .journey-section .journey-header h2,
    .journey-section h2,
    .journey-section .journey-title,
    #joinus h1,
    #joinus h2 {

        font-size: 45px !important;
        line-height: 1.05 !important;
        letter-spacing: -1px !important;

        margin-top: 30px !important;
        margin-bottom: 0 !important;

        max-width: 550px !important;

        transform: none !important;
        clip-path: none !important;

        overflow: visible !important;
    }

}
/* =========================================================
   FINAL — HIRING JOURNEY SIZE ADJUSTMENT
========================================================= */

@media (min-width: 1201px) {

    /* HEADING — 30% LARGER */
    .journey-section .journey-header h2,
    .journey-section h2,
    .journey-section .journey-title,
    #joinus h1,
    #joinus h2 {
        font-size: 45px !important;
        line-height: 1.05 !important;
        letter-spacing: -1.2px !important;
        margin-top: 30px !important;
        margin-bottom: 0 !important;
        max-width: 600px !important;
        overflow: visible !important;
    }

    /* CARDS — SLIGHTLY TALLER */
    .journey-item {
        height: 460px !important;
        min-height: 460px !important;
    }

    .journey-card {
        height: 700px !important;
        min-height: 700px !important;
    }

}
/* =========================================================
   HIRING JOURNEY — FINAL PREMIUM DESKTOP
========================================================= */

@media (min-width: 1201px) {

    /* ================================
       SECTION
    ================================= */

    .journey-section {
        min-height: auto !important;
        height: auto !important;
        padding-top: 70px !important;
        padding-bottom: 8px !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        box-sizing: border-box !important;
    }

    /* ================================
       HEADING
    ================================= */

    .journey-section .journey-header {
        margin: 0 !important;
        padding: 0 !important;
        max-width: 650px !important;
        overflow: visible !important;
    }

    .journey-section .journey-header h2 {
        font-size: 45px !important;
        line-height: 1.02 !important;
        letter-spacing: -1.8px !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 620px !important;
        overflow: visible !important;
        font-weight: 800 !important;
    }

    .journey-section .journey-header p {
        margin-top: 15px !important;
        margin-bottom: 0 !important;
        max-width: 530px !important;
        font-size: 11px !important;
        line-height: 1.55 !important;
    }

    /* ================================
       TIMELINE
    ================================= */

    .journey-section .journey-timeline {
        margin-top: 52px !important;
        padding-top: 55px !important;
        padding-bottom: 0 !important;
        gap: 15px !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        align-items: stretch !important;
    }

    .journey-section .journey-progress {
        top: 27px !important;
        height: 2px !important;
    }

    /* ================================
       ITEM
    ================================= */

    .journey-section .journey-item {
        flex: 1 1 0 !important;
        width: auto !important;
        min-width: 0 !important;
        height: 475px !important;
        min-height: 475px !important;
        max-height: 475px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* ================================
       NUMBER
    ================================= */

    .journey-section .journey-number {
        width: 76px !important;
        height: 76px !important;
        top: -58px !important;
        font-size: 17px !important;
        font-weight: 800 !important;
        transform: translateX(-50%) !important;
        box-shadow:
            0 0 0 7px #050505,
            0 0 24px rgba(255,101,0,.18) !important;
        z-index: 20 !important;
    }

    .journey-section .journey-item:hover .journey-number {
        transform: translateX(-50%) !important;
    }

    /* ================================
       CARD
    ================================= */

    .journey-section .journey-card {
        width: 100% !important;
        height: 475px !important;
        min-height: 475px !important;
        max-height: 475px !important;
        box-sizing: border-box !important;
        padding: 70px 20px 45px !important;
        margin: 0 !important;
        overflow: hidden !important;
        border-radius: 26px !important;
        border: 1px solid rgba(255,255,255,.10) !important;
        background:
            linear-gradient(
                145deg,
                rgba(255,255,255,.055),
                rgba(255,255,255,.015)
            ) !important;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.05),
            0 18px 45px rgba(0,0,0,.30) !important;
        transform: none !important;
        transition:
            transform .35s ease,
            border-color .35s ease,
            box-shadow .35s ease !important;
    }

    /* ================================
       CARD HOVER
    ================================= */

    .journey-section .journey-card:hover {
        transform: translateY(-7px) !important;
        border-color: rgba(255,101,0,.32) !important;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.06),
            0 28px 60px rgba(0,0,0,.42),
            0 0 28px rgba(255,101,0,.06) !important;
    }

    /* ================================
       TOP LABEL
    ================================= */

    .journey-section .journey-card-top {
        top: 21px !important;
        left: 21px !important;
        right: 21px !important;
        font-size: 7px !important;
        letter-spacing: 1.4px !important;
    }

    /* ================================
       ICON
    ================================= */

    .journey-section .journey-icon {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        min-height: 56px !important;
        margin: 0 auto !important;
        border-radius: 15px !important;
        font-size: 24px !important;
        border: 1px solid rgba(255,101,0,.34) !important;
        background:
            linear-gradient(
                145deg,
                rgba(255,101,0,.12),
                rgba(255,101,0,.045)
            ) !important;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.04),
            0 8px 22px rgba(0,0,0,.22) !important;
        transform: none !important;
    }

    .journey-section .journey-card:hover .journey-icon {
        transform: translateY(-2px) !important;
        border-color: rgba(255,101,0,.48) !important;
    }

    /* ================================
       TITLE
       NO ARTIFICIAL 200px HEIGHT
    ================================= */

    .journey-section .journey-card h3 {
        width: 100% !important;
        min-height: 0 !important;
        height: auto !important;
        margin: 19px auto 0 !important;
        padding: 0 !important;
        display: block !important;
        font-size: 20px !important;
        line-height: 1.16 !important;
        letter-spacing: -.45px !important;
        font-weight: 800 !important;
        text-align: center !important;
        color: #f5f5f5 !important;
        overflow: visible !important;
    }

    /* ================================
       DESCRIPTION
    ================================= */

    .journey-section .journey-card p {
        width: 100% !important;
        max-width: 205px !important;
        margin: 11px auto 0 !important;
        padding: 0 !important;
        font-size: 11px !important;
        line-height: 1.62 !important;
        text-align: center !important;
        color: #777 !important;
        overflow: visible !important;
    }

    /* ================================
       BOTTOM META
    ================================= */

    .journey-section .journey-bottom {
        position: absolute !important;
        left: 21px !important;
        right: 21px !important;
        bottom: 18px !important;
        height: 26px !important;
        padding-top: 10px !important;
        margin: 0 !important;
        border-top: 1px solid rgba(255,255,255,.075) !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        font-size: 7px !important;
        line-height: 1 !important;
        letter-spacing: 1px !important;
    }
}

/* =========================================================
   MOBILE — PRESERVE HORIZONTAL JOURNEY
========================================================= */

@media (max-width: 1200px) {

    .journey-section .journey-card h3 {
        min-height: 0 !important;
        height: auto !important;
    }

}
/* =========================================================
   FINAL OVERRIDE — ALL 6 JOURNEY CARDS SAME HEIGHT
   ========================================================= */

@media (min-width: 1201px) {

    /* FORCE ALL SIX ITEMS TO SAME HEIGHT */
    #journey .journey-timeline {
        display: flex !important;
        align-items: stretch !important;
        gap: 15px !important;
        overflow: visible !important;
    }

    #journey .journey-item,
    #journey .journey-item:nth-child(1),
    #journey .journey-item:nth-child(2),
    #journey .journey-item:nth-child(3),
    #journey .journey-item:nth-child(4),
    #journey .journey-item:nth-child(5),
    #journey .journey-item:nth-child(6) {
        flex: 1 1 0 !important;
        width: 0 !important;
        min-width: 0 !important;
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }

    /* FORCE EVERY CARD — INCLUDING 4,5,6 */
    #journey .journey-card,
    #journey .journey-item:nth-child(1) .journey-card,
    #journey .journey-item:nth-child(2) .journey-card,
    #journey .journey-item:nth-child(3) .journey-card,
    #journey .journey-item:nth-child(4) .journey-card,
    #journey .journey-item:nth-child(5) .journey-card,
    #journey .journey-item:nth-child(6) .journey-card,
    #journey .final-card {
        width: 100% !important;
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding: 70px 18px 45px !important;
        margin: 0 !important;
        transform: none !important;
    }

    /* Keep hover small */
    #journey .journey-card:hover {
        transform: translateY(-5px) !important;
    }

    /* ICON */
    #journey .journey-icon {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        min-height: 52px !important;
        margin: 0 auto !important;
        font-size: 22px !important;
    }

    /* TITLE */
    #journey .journey-card h3 {
        min-height: 0 !important;
        height: auto !important;
        margin: 18px auto 0 !important;
        font-size: 18px !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    /* DESCRIPTION */
    #journey .journey-card p {
        width: 100% !important;
        max-width: 190px !important;
        margin: 10px auto 0 !important;
        font-size: 10.5px !important;
        line-height: 1.55 !important;
        text-align: center !important;
        overflow: visible !important;
    }

    /* STEP LABEL */
    #journey .journey-card-top {
        top: 20px !important;
        left: 18px !important;
        right: 18px !important;
    }

    /* BOTTOM */
    #journey .journey-bottom {
        position: absolute !important;
        left: 18px !important;
        right: 18px !important;
        bottom: 15px !important;
        height: 22px !important;
        padding-top: 8px !important;
        margin: 0 !important;
    }

    /* NUMBER */
    #journey .journey-number {
        width: 68px !important;
        height: 68px !important;
        top: -52px !important;
        transform: translateX(-50%) !important;
    }

    #journey .journey-item:hover .journey-number {
        transform: translateX(-50%) !important;
    }
}
@media (min-width: 1201px) {

    .journey-section .journey-header {
        transform: translateY(20px) !important;
        overflow: visible !important;
    }

    .journey-section .journey-header h2 {
        overflow: visible !important;
        clip-path: none !important;
    }

}
/* =========================================
   FINAL FIX — JOURNEY HEADING POSITION
   ========================================= */

@media (min-width: 1201px) {

    #journey .journey-header {
        position: relative !important;

        /* Heading ko navbar se neeche */
        top: 58px !important;

        z-index: 5 !important;

        overflow: visible !important;
    }

    #journey .journey-header h2 {
        position: relative !important;

        margin-top: 0 !important;

        overflow: visible !important;

        clip-path: none !important;
    }

    #journey .journey-header p {
        margin-top: 18px !important;
    }

}
/* =========================================
   REMOVE JOURNEY INTERNAL SCROLLER
   ========================================= */

@media (min-width: 1201px) {

    #journey,
    #journey .journey-section,
    #journey .journey-timeline,
    #journey .journey-grid,
    #journey .journey-track {
        overflow: visible !important;
        overflow-y: visible !important;
        overflow-x: visible !important;

        height: auto !important;
        max-height: none !important;
    }

    /* Browser ko section ke andar scrolling area
       create karne se rokein */
    #journey {
        position: relative !important;
        min-height: 0 !important;
    }

}
/* NO INTERNAL SECTION SCROLLBARS */

html,
body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

section,
.career-section,
.journey-section,
.journey-timeline {
    overflow-y: visible !important;
}
/* =========================================
   JOURNEY SECTION — RESTORE FULL AREA
   ========================================= */

@media (min-width: 1201px) {

    #journey {
        position: relative !important;

        /* Full section breathing room */
        padding-top: 110px !important;
        padding-bottom: 70px !important;

        min-height: 780px !important;
        height: auto !important;

        overflow: visible !important;
        box-sizing: border-box !important;
    }

    /* Header */
    #journey .journey-header {
        position: relative !important;

        top: 20px !important;

        margin-bottom: 0 !important;

        overflow: visible !important;
    }

    /* Heading */
    #journey .journey-header h2 {
        overflow: visible !important;
        clip-path: none !important;
    }

    /* Timeline */
    #journey .journey-timeline {
        margin-top: 50px !important;

        padding-top: 55px !important;
        padding-bottom: 10px !important;

        overflow: visible !important;

        min-height: 430px !important;
        height: auto !important;
    }

    /* All six cards */
    #journey .journey-item {
        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;
    }

    #journey .journey-card {
        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;
    }

}
/* =========================================================
   JOURNEY — FINAL CARD HEIGHT FIX
   ALL 6 DESKTOP CARDS EXACTLY SAME HEIGHT
   ========================================================= */

@media (min-width: 1201px) {

    /* Timeline */
    #journey .journey-timeline {
        display: flex !important;
        align-items: flex-start !important;
        gap: 15px !important;
        overflow: visible !important;
    }

    /* ALL 6 ITEMS — SAME HEIGHT */
    #journey .journey-item,
    #journey .journey-item:nth-child(1),
    #journey .journey-item:nth-child(2),
    #journey .journey-item:nth-child(3),
    #journey .journey-item:nth-child(4),
    #journey .journey-item:nth-child(5),
    #journey .journey-item:nth-child(6) {
        flex: 1 1 0 !important;
        width: 0 !important;
        min-width: 0 !important;
        height: 325px !important;
        min-height: 325px !important;
        max-height: 325px !important;
        padding: 0 !important;
        margin: 0 !important;
        align-self: flex-start !important;
        box-sizing: border-box !important;
    }

    /* ALL 6 ACTUAL CARDS — SAME HEIGHT */
    #journey .journey-item .journey-card,
    #journey .journey-item:nth-child(1) .journey-card,
    #journey .journey-item:nth-child(2) .journey-card,
    #journey .journey-item:nth-child(3) .journey-card,
    #journey .journey-item:nth-child(4) .journey-card,
    #journey .journey-item:nth-child(5) .journey-card,
    #journey .journey-item:nth-child(6) .journey-card,
    #journey .journey-item .final-card,
    #journey .final-card {
        width: 100% !important;
        height: 325px !important;
        min-height: 325px !important;
        max-height: 325px !important;
        padding: 70px 18px 45px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* IMPORTANT:
       6th / Founder card must NOT have any special height */
    #journey .journey-item:nth-child(6),
    #journey .journey-item:nth-child(6) .journey-card,
    #journey .journey-item:nth-child(6) .final-card,
    #journey .final-card {
        height: 325px !important;
        min-height: 325px !important;
        max-height: 325px !important;
        margin-bottom: 0 !important;
        padding-bottom: 45px !important;
        box-sizing: border-box !important;
    }

    /* Keep hover from changing card height */
    #journey .journey-card:hover,
    #journey .journey-item:nth-child(6) .journey-card:hover {
        height: 325px !important;
        min-height: 325px !important;
        max-height: 325px !important;
        transform: translateY(-5px) !important;
    }

    /* Bottom information stays inside every card */
    #journey .journey-bottom {
        position: absolute !important;
        left: 18px !important;
        right: 18px !important;
        bottom: 15px !important;
        height: 22px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}
/* =========================================================
   JOURNEY — SAME LEFT / RIGHT SPACE AS BENEFITS
========================================================= */

@media (min-width: 1201px) {

    .journey-section,
    #joinus {

        padding-left: 40px !important;
        padding-right: 40px !important;

        box-sizing: border-box !important;
    }


    /* Journey header uses same content width */
    .journey-header {

        width:
            min(
                calc(100% - 80px),
                1580px
            ) !important;

        max-width: 1580px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    #joinus .journey-header {

        width:
            min(
                calc(100% - 80px),
                1580px
            ) !important;

        max-width: 1580px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* Journey cards / timeline */
    .journey-timeline {

        width:
            min(
                calc(100% - 80px),
                1580px
            ) !important;

        max-width: 1580px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* If using grid version instead of timeline */
    .journey-section .journey-steps,
    .journey-section .steps-container,
    .journey-section .steps {

        width:
            min(
                calc(100% - 80px),
                1580px
            ) !important;

        max-width: 1580px !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

}


/* =========================================================
   JOURNEY TABLET
========================================================= */

@media (min-width: 701px) and (max-width: 1200px) {

    .journey-section,
    #joinus {

        padding-left: 40px !important;
        padding-right: 40px !important;
    }

}


/* =========================================================
   JOURNEY MOBILE
========================================================= */

@media (max-width: 700px) {

    .journey-section,
    #joinus {

        padding-left: 20px !important;
        padding-right: 20px !important;
    }

}


/* =========================================================
   JOURNEY — WIDER CARDS / SMALLER LEFT & RIGHT GAPS
   Keep card height unchanged
========================================================= */

@media (min-width: 1201px) {

    /* Reduce empty space on both sides of the Journey */
    .journey-section,
    #joinus {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    /* Use the full available width so all 6 cards become wider */
    .journey-section .journey-timeline,
    #journey .journey-timeline {
        width: 100% !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: 15px !important;
    }

    /* Keep every card exactly the same height */
    #journey .journey-item,
    #journey .journey-item:nth-child(1),
    #journey .journey-item:nth-child(2),
    #journey .journey-item:nth-child(3),
    #journey .journey-item:nth-child(4),
    #journey .journey-item:nth-child(5),
    #journey .journey-item:nth-child(6),
    #journey .journey-item .journey-card,
    #journey .journey-item:nth-child(1) .journey-card,
    #journey .journey-item:nth-child(2) .journey-card,
    #journey .journey-item:nth-child(3) .journey-card,
    #journey .journey-item:nth-child(4) .journey-card,
    #journey .journey-item:nth-child(5) .journey-card,
    #journey .journey-item:nth-child(6) .journey-card,
    #journey .final-card {
        height: 325px !important;
        min-height: 325px !important;
        max-height: 325px !important;
    }

}


/* =========================================================
   FINAL JOURNEY — MATCH REFERENCE IMAGE
   6 WIDE CARDS + MINIMAL SIDE GAPS
   DESCRIPTION TEXT ALIGNED ON ONE HORIZONTAL START LINE
   CARD HEIGHT REMAINS UNCHANGED
========================================================= */

@media (min-width: 1201px) {

    /* ---------------------------------------------------------
       1. BREAK OUT OF THE GLOBAL 1240px CONTAINER
       This is the main reason the cards were staying narrow.
    --------------------------------------------------------- */

    #journey,
    .journey-section {
        padding-left: 65px !important;
        padding-right: 65px !important;
        box-sizing: border-box !important;
        overflow-x: visible !important;
    }

    #journey > .container,
    .journey-section > .container {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    /* Header aligns with the left edge of the cards */
    #journey .journey-header,
    .journey-section .journey-header {
        width: 100% !important;
        max-width: 760px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* ---------------------------------------------------------
       2. FULL-WIDTH TIMELINE
       6 cards now use the entire available desktop width.
    --------------------------------------------------------- */

    #journey .journey-timeline,
    .journey-section .journey-timeline {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 14px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: stretch !important;
        overflow: visible !important;
    }

    /* Orange line spans the complete card area */
    #journey .journey-progress,
    .journey-section .journey-progress {
        left: -10px !important;
        right: -10px !important;
        width: auto !important;
    }

    /* ---------------------------------------------------------
       3. SIX EQUAL WIDE CARDS
       Height is intentionally kept at 325px.
    --------------------------------------------------------- */

    #journey .journey-item,
    #journey .journey-item:nth-child(1),
    #journey .journey-item:nth-child(2),
    #journey .journey-item:nth-child(3),
    #journey .journey-item:nth-child(4),
    #journey .journey-item:nth-child(5),
    #journey .journey-item:nth-child(6) {
        flex: 1 1 0 !important;
        width: auto !important;
        min-width: 0 !important;
        height: 325px !important;
        min-height: 325px !important;
        max-height: 325px !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    #journey .journey-item .journey-card,
    #journey .journey-item:nth-child(1) .journey-card,
    #journey .journey-item:nth-child(2) .journey-card,
    #journey .journey-item:nth-child(3) .journey-card,
    #journey .journey-item:nth-child(4) .journey-card,
    #journey .journey-item:nth-child(5) .journey-card,
    #journey .journey-item:nth-child(6) .journey-card,
    #journey .final-card {
        width: 100% !important;
        height: 325px !important;
        min-height: 325px !important;
        max-height: 325px !important;
        padding: 70px 22px 45px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* ---------------------------------------------------------
       4. CARD TOP LABELS
    --------------------------------------------------------- */

    #journey .journey-card-top,
    .journey-section .journey-card-top {
        top: 20px !important;
        left: 22px !important;
        right: 22px !important;
        font-size: 7px !important;
        line-height: 1 !important;
        letter-spacing: 1.3px !important;
    }

    /* ---------------------------------------------------------
       5. ICON
    --------------------------------------------------------- */

    #journey .journey-icon,
    .journey-section .journey-icon {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        min-height: 52px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        font-size: 22px !important;
    }

    /* ---------------------------------------------------------
       6. TITLES — SAME RESERVED HEIGHT
       This makes every description begin on exactly the same
       horizontal line, even when the title wraps to 2 lines.
    --------------------------------------------------------- */

    #journey .journey-card h3,
    .journey-section .journey-card h3,
    .journey-section .step-card h3 {
        width: 100% !important;
        height: 42px !important;
        min-height: 42px !important;
        max-height: 42px !important;
        margin: 16px 0 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        font-size: 18px !important;
        line-height: 1.12 !important;
        letter-spacing: -.4px !important;
        text-align: center !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* ---------------------------------------------------------
       7. DESCRIPTIONS — ALL START AT THE SAME Y POSITION
    --------------------------------------------------------- */

    #journey .journey-card p,
    .journey-section .journey-card p,
    .journey-section .step-card p {
        width: 100% !important;
        max-width: 205px !important;
        min-height: 0 !important;
        margin: 7px auto 0 !important;
        padding: 0 !important;
        font-size: 10.5px !important;
        line-height: 1.55 !important;
        text-align: center !important;
        color: #777 !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    /* ---------------------------------------------------------
       8. BOTTOM META — SAME LINE IN EVERY CARD
    --------------------------------------------------------- */

    #journey .journey-bottom,
    .journey-section .journey-bottom {
        position: absolute !important;
        left: 22px !important;
        right: 22px !important;
        bottom: 15px !important;
        height: 22px !important;
        margin: 0 !important;
        padding: 8px 0 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        border-top: 1px solid rgba(255,255,255,.075) !important;
        font-size: 7px !important;
        line-height: 1 !important;
        letter-spacing: 1px !important;
        white-space: nowrap !important;
    }

    /* ---------------------------------------------------------
       9. NUMBER CIRCLES
    --------------------------------------------------------- */

    #journey .journey-number,
    .journey-section .journey-number {
        width: 68px !important;
        height: 68px !important;
        top: -52px !important;
        font-size: 16px !important;
        transform: translateX(-50%) !important;
        box-shadow:
            0 0 0 6px #050505,
            0 0 22px rgba(255,101,0,.18) !important;
    }

    #journey .journey-item:hover .journey-number,
    .journey-section .journey-item:hover .journey-number {
        transform: translateX(-50%) !important;
    }

}

/* =========================================================
   MOBILE — KEEP EXISTING MOBILE DESIGN UNCHANGED
========================================================= */

@media (max-width: 1200px) {

    #journey > .container,
    .journey-section > .container {
        width: 100%;
        max-width: none;
    }

}


/* =========================================================
   JOURNEY — CENTERED & LARGER HEADING
   Keep all 6 cards fitting exactly as before
========================================================= */

@media (min-width: 1201px) {

    #journey .journey-header {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
    }

    #journey .journey-header h2 {
        font-size: 58px !important;
        line-height: 1.02 !important;
        letter-spacing: -2.2px !important;
        max-width: 720px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    #journey .journey-header p {
        max-width: 650px !important;
        margin: 18px auto 0 !important;
        text-align: center !important;
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    /* Keep the timeline/cards unchanged in width and fit */
    #journey .journey-timeline {
        width: 100% !important;
        margin-top: 40px !important;
    }
}
/* =========================================================
   EMPLOYEE BENEFITS — HORIZONTAL IMAGE ACCORDION
========================================================= */

#benefits,
.benefits-section {
    position: relative;

    width: 100%;

    padding: 105px 0 80px;

    background: #050608;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

#benefits::before,
.benefits-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -180px;
    top: 20px;

    background: rgba(255,101,0,.13);

    filter: blur(150px);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   SUBTLE GRID
========================================================= */

#benefits::after,
.benefits-section::after {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 40px 40px;

    opacity: .65;

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

#benefits .benefits-header,
.benefits-section .benefits-header {

    position: relative;

    z-index: 5;

    width: 100%;

    padding: 0 30px;

    margin: 0 auto 70px;

    text-align: center;
}


#benefits .benefits-header .section-label,
.benefits-section .benefits-header .section-label {

    display: none;
}


#benefits .benefits-header h2,
.benefits-section .benefits-header h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(
        52px,
        5vw,
        76px
    );

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;
}


#benefits .benefits-header h2 span,
.benefits-section .benefits-header h2 span {

    color: #ff6b00;
}


#benefits .benefits-header p,
.benefits-section .benefits-header p {

    max-width: 700px;

    margin: 25px auto 0;

    color: #b4b4b4;

    font-size: 16px;

    line-height: 1.6;
}


/* =========================================================
   ACCORDION CONTAINER
========================================================= */

#benefits .benefits-accordion,
.benefits-section .benefits-accordion {

    position: relative;

    z-index: 5;

    width: calc(100% - 110px);

    max-width: 1600px;

    height: 490px;

    margin: 0 auto;

    display: flex;

    align-items: stretch;

    gap: 16px;

    overflow: hidden;
}


/* =========================================================
   BENEFIT PANEL
========================================================= */

#benefits .benefit-panel,
.benefits-section .benefit-panel {

    position: relative;

    flex: 1 1 0;

    min-width: 0;

    height: 490px;

    overflow: hidden;

    border-radius: 34px;

    border:
        1px solid rgba(255,255,255,.09);

    background-color: #111;

    background-size: cover;

    background-position: center;

    cursor: pointer;

    isolation: isolate;

    transition:
        flex .65s cubic-bezier(.16,1,.3,1),
        border-color .4s ease,
        box-shadow .5s ease,
        transform .4s ease;
}


/* =========================================================
   CLOSED PANEL
========================================================= */

#benefits .benefit-panel:not(:hover),
.benefits-section .benefit-panel:not(:hover) {

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.015);
}


/* =========================================================
   OPEN PANEL
========================================================= */

#benefits .benefit-panel:hover,
.benefits-section .benefit-panel:hover {

    flex:
        4.8 1 0;

    border-color:
        rgba(255,107,0,.55);

    transform:
        translateY(-2px);

    box-shadow:
        0 25px 65px rgba(0,0,0,.50),
        0 0 35px rgba(255,107,0,.08);
}


/* =========================================================
   IMAGE ZOOM
========================================================= */

#benefits .benefit-panel::before,
.benefits-section .benefit-panel::before {

    content: "";

    position: absolute;

    inset: -12px;

    z-index: 0;

    background: inherit;

    background-size: cover;

    background-position: center;

    transform: scale(1.01);

    transition:
        transform .9s cubic-bezier(.16,1,.3,1);
}


#benefits .benefit-panel:hover::before,
.benefits-section .benefit-panel:hover::before {

    transform: scale(1.08);
}


/* =========================================================
   DARK IMAGE OVERLAY
========================================================= */

#benefits .benefit-overlay,
.benefits-section .benefit-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    display: block;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.12) 0%,
            rgba(0,0,0,.25) 35%,
            rgba(0,0,0,.88) 100%
        );

    transition:
        background .5s ease;
}


#benefits .benefit-panel:hover .benefit-overlay,
.benefits-section .benefit-panel:hover .benefit-overlay {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.05) 0%,
            rgba(0,0,0,.18) 35%,
            rgba(0,0,0,.90) 100%
        );
}


/* =========================================================
   NUMBER
========================================================= */

#benefits .benefit-no,
.benefits-section .benefit-no,
#benefits .benefit-number,
.benefits-section .benefit-number {

    position: absolute;

    z-index: 4;

    top: 35px;

    left: 30px;

    color: #ff6b00;

    font-size: 48px;

    line-height: 1;

    font-weight: 400;

    transition:
        top .55s ease,
        left .55s ease,
        font-size .55s ease;
}


/* OPEN NUMBER */

#benefits .benefit-panel:hover .benefit-no,
.benefits-section .benefit-panel:hover .benefit-no,
#benefits .benefit-panel:hover .benefit-number,
.benefits-section .benefit-panel:hover .benefit-number {

    top: 42px;

    left: 30px;

    font-size: 52px;
}


/* =========================================================
   CONTENT
========================================================= */

#benefits .benefit-content,
.benefits-section .benefit-content {

    position: absolute;

    inset: 0;

    z-index: 5;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    color: #ffffff;
}


/* =========================================================
   CLOSED TITLE
========================================================= */

#benefits .benefit-title,
.benefits-section .benefit-title,
#benefits .benefit-content h3,
.benefits-section .benefit-content h3 {

    position: absolute;

    z-index: 5;

    left: 50%;

    top: 55%;

    margin: 0;

    transform:
        translate(-50%,-50%)
        rotate(-90deg);

    transform-origin: center;

    white-space: nowrap;

    color: #ffffff;

    font-size: 22px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -.5px;

    transition:
        left .55s cubic-bezier(.16,1,.3,1),
        top .55s cubic-bezier(.16,1,.3,1),
        bottom .55s cubic-bezier(.16,1,.3,1),
        transform .55s cubic-bezier(.16,1,.3,1),
        font-size .55s cubic-bezier(.16,1,.3,1);
}


/* =========================================================
   OPEN TITLE
========================================================= */

#benefits .benefit-panel:hover .benefit-title,
.benefits-section .benefit-panel:hover .benefit-title,
#benefits .benefit-panel:hover .benefit-content h3,
.benefits-section .benefit-panel:hover .benefit-content h3 {

    left: 30px;

    top: auto;

    bottom: 70px;

    transform: none;

    white-space: normal;

    max-width: calc(100% - 60px);

    font-size: 32px;

    line-height: 1.05;
}


/* =========================================================
   DESCRIPTION — CLOSED
========================================================= */

#benefits .benefit-description,
.benefits-section .benefit-description,
#benefits .benefit-content p,
.benefits-section .benefit-content p {

    position: absolute;

    z-index: 5;

    left: 30px;

    right: 30px;

    bottom: 28px;

    margin: 0;

    color:
        rgba(255,255,255,.82);

    font-size: 13px;

    line-height: 1.55;

    opacity: 0;

    transform:
        translateY(15px);

    transition:
        opacity .4s ease,
        transform .5s ease;
}


/* =========================================================
   DESCRIPTION — OPEN
========================================================= */

#benefits .benefit-panel:hover .benefit-description,
.benefits-section .benefit-panel:hover .benefit-description,
#benefits .benefit-panel:hover .benefit-content p,
.benefits-section .benefit-panel:hover .benefit-content p {

    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   TOP ORANGE LINE
========================================================= */

#benefits .benefit-panel:hover::after,
.benefits-section .benefit-panel:hover::after {

    content: "";

    position: absolute;

    z-index: 6;

    left: 25px;

    right: 25px;

    top: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,107,0,.8),
            transparent
        );
}


/* =========================================================
   DESKTOP — 8 CARDS
========================================================= */

@media (min-width: 1201px) {

    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion {

        width:
            calc(100% - 110px);

        height:
            490px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    #benefits,
    .benefits-section {

        padding:
            90px 0
            100px;
    }


    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion {

        width:
            calc(100% - 50px);

        height:
            440px;

        gap: 12px;
    }


    #benefits .benefit-panel,
    .benefits-section .benefit-panel {

        height:
            440px;

        border-radius:
            28px;
    }


    #benefits .benefit-no,
    .benefits-section .benefit-no {

        font-size:
            38px;
    }


    #benefits .benefit-title,
    .benefits-section .benefit-title {

        font-size:
            19px;
    }


    #benefits .benefit-panel:hover .benefit-title,
    .benefits-section .benefit-panel:hover .benefit-title {

        font-size:
            28px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    #benefits,
    .benefits-section {

        padding:
            80px 0
            90px;
    }


    #benefits .benefits-header,
    .benefits-section .benefits-header {

        padding:
            0 20px;

        margin-bottom:
            45px;

        text-align:
            left;
    }


    #benefits .benefits-header h2,
    .benefits-section .benefits-header h2 {

        font-size:
            44px;

        line-height:
            1;

        letter-spacing:
            -3px;
    }


    #benefits .benefits-header p,
    .benefits-section .benefits-header p {

        margin-top:
            18px;

        font-size:
            14px;

        line-height:
            1.65;
    }


    /* Mobile becomes vertical accordion */

    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion {

        width:
            calc(100% - 30px);

        height:
            auto;

        margin:
            0 auto;

        display:
            flex;

        flex-direction:
            column;

        gap:
            10px;

        overflow:
            visible;
    }


    #benefits .benefit-panel,
    .benefits-section .benefit-panel {

        width:
            100%;

        height:
            100px;

        min-height:
            100px;

        border-radius:
            22px;

        flex:
            none !important;
    }


    /* Mobile open card */

    #benefits .benefit-panel:hover,
    .benefits-section .benefit-panel:hover {

        height:
            300px;

        min-height:
            300px;

        flex:
            none !important;

        transform:
            none;
    }


    #benefits .benefit-no,
    .benefits-section .benefit-no {

        top:
            25px;

        left:
            22px;

        font-size:
            32px;
    }


    #benefits .benefit-panel:hover .benefit-no,
    .benefits-section .benefit-panel:hover .benefit-no {

        top:
            25px;

        left:
            22px;

        font-size:
            38px;
    }


    #benefits .benefit-content,
    .benefits-section .benefit-content {

        padding:
            22px;
    }


    #benefits .benefit-title,
    .benefits-section .benefit-title,
    #benefits .benefit-content h3,
    .benefits-section .benefit-content h3 {

        left:
            50%;

        top:
            50%;

        bottom:
            auto;

        font-size:
            17px;
    }


    #benefits .benefit-panel:hover .benefit-title,
    .benefits-section .benefit-panel:hover .benefit-title,
    #benefits .benefit-panel:hover .benefit-content h3,
    .benefits-section .benefit-panel:hover .benefit-content h3 {

        left:
            22px;

        top:
            auto;

        bottom:
            65px;

        font-size:
            26px;

        transform:
            none;

        max-width:
            calc(100% - 44px);
    }


    #benefits .benefit-description,
    .benefits-section .benefit-description,
    #benefits .benefit-content p,
    .benefits-section .benefit-content p {

        left:
            22px;

        right:
            22px;

        bottom:
            20px;

        font-size:
            11px;
    }

}
/* =========================================================
   BENEFITS — FINAL POLISH
   Shorter + Darker + Bottom Aligned Headings
========================================================= */


/* ---------------------------------------------------------
   SHORTER CARDS
--------------------------------------------------------- */

@media (min-width: 701px) {

    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion {

        height: 410px !important;

    }


    #benefits .benefit-panel,
    .benefits-section .benefit-panel {

        height: 410px !important;
        min-height: 410px !important;
        max-height: 410px !important;

        border-radius: 30px !important;
    }


    #benefits .benefit-panel:hover,
    .benefits-section .benefit-panel:hover {

        height: 410px !important;
        min-height: 410px !important;
        max-height: 410px !important;
    }

}


/* ---------------------------------------------------------
   DARKER IMAGE
--------------------------------------------------------- */

#benefits .benefit-panel::before,
.benefits-section .benefit-panel::before {

    filter:
        brightness(.48)
        saturate(.72) !important;

    opacity: .9 !important;

    transition:
        transform .9s cubic-bezier(.16,1,.3,1),
        filter .5s ease;
}


/* Keep hover image dark as well */

#benefits .benefit-panel:hover::before,
.benefits-section .benefit-panel:hover::before {

    filter:
        brightness(.52)
        saturate(.75) !important;

}


/* Stronger dark overlay */

#benefits .benefit-overlay,
.benefits-section .benefit-overlay {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.35) 0%,
            rgba(0,0,0,.45) 42%,
            rgba(0,0,0,.93) 100%
        ) !important;
}


#benefits .benefit-panel:hover .benefit-overlay,
.benefits-section .benefit-panel:hover .benefit-overlay {

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.28) 0%,
            rgba(0,0,0,.40) 42%,
            rgba(0,0,0,.94) 100%
        ) !important;
}


/* ---------------------------------------------------------
   CLOSED HEADINGS
   ALL START FROM SAME BOTTOM POSITION
--------------------------------------------------------- */

@media (min-width: 701px) {

    #benefits .benefit-panel .benefit-title,
    .benefits-section .benefit-panel .benefit-title,

    #benefits .benefit-panel .benefit-content h3,
    .benefits-section .benefit-panel .benefit-content h3 {

        left: 50% !important;

        top: auto !important;

        bottom: 28px !important;

        transform:
            translateX(-50%)
            rotate(-90deg) !important;

        transform-origin:
            center center !important;

        margin: 0 !important;

        padding: 0 !important;

        white-space: nowrap !important;

        width: max-content !important;

        max-width: none !important;

        font-size: 21px !important;

        line-height: 1 !important;

        text-align: center !important;
    }


    /* -----------------------------------------------------
       OPEN CARD HEADING
       Same bottom alignment
    ----------------------------------------------------- */

    #benefits .benefit-panel:hover .benefit-title,
    .benefits-section .benefit-panel:hover .benefit-title,

    #benefits .benefit-panel:hover .benefit-content h3,
    .benefits-section .benefit-panel:hover .benefit-content h3 {

        left: 30px !important;

        top: auto !important;

        bottom: 58px !important;

        transform: none !important;

        transform-origin:
            left bottom !important;

        width: auto !important;

        max-width:
            calc(100% - 60px) !important;

        white-space: normal !important;

        font-size: 30px !important;

        line-height: 1.05 !important;

        text-align: left !important;
    }


    /* -----------------------------------------------------
       OPEN DESCRIPTION
    ----------------------------------------------------- */

    #benefits .benefit-panel:hover .benefit-description,
    .benefits-section .benefit-panel:hover .benefit-description,

    #benefits .benefit-panel:hover .benefit-content p,
    .benefits-section .benefit-panel:hover .benefit-content p {

        left: 30px !important;

        right: auto !important;

        bottom: 25px !important;

        max-width: 430px !important;

        opacity: 1 !important;

        transform: none !important;

        font-size: 12px !important;

        line-height: 1.5 !important;

        text-align: left !important;
    }

}


/* ---------------------------------------------------------
   NUMBER
--------------------------------------------------------- */

@media (min-width: 701px) {

    #benefits .benefit-no,
    .benefits-section .benefit-no,

    #benefits .benefit-number,
    .benefits-section .benefit-number {

        top: 28px !important;

        left: 26px !important;

        font-size: 42px !important;
    }


    #benefits .benefit-panel:hover .benefit-no,
    .benefits-section .benefit-panel:hover .benefit-no,

    #benefits .benefit-panel:hover .benefit-number,
    .benefits-section .benefit-panel:hover .benefit-number {

        top: 30px !important;

        left: 28px !important;

        font-size: 46px !important;
    }

}


/* ---------------------------------------------------------
   OPEN CARD — SCREENSHOT STYLE
--------------------------------------------------------- */

@media (min-width: 701px) {

    #benefits .benefit-panel:hover,
    .benefits-section .benefit-panel:hover {

        border-color:
            rgba(255,107,0,.55) !important;

        box-shadow:
            0 20px 55px rgba(0,0,0,.55),
            0 0 25px rgba(255,107,0,.07) !important;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {

    #benefits .benefit-panel,
    .benefits-section .benefit-panel {

        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }


    #benefits .benefit-panel:hover,
    .benefits-section .benefit-panel:hover {

        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }


    #benefits .benefit-panel::before,
    .benefits-section .benefit-panel::before {

        filter:
            brightness(.45)
            saturate(.70) !important;
    }


    #benefits .benefit-panel .benefit-title,
    .benefits-section .benefit-panel .benefit-title,

    #benefits .benefit-panel .benefit-content h3,
    .benefits-section .benefit-panel .benefit-content h3 {

        bottom: 25px !important;
    }

}
/* =========================================================
   BENEFITS HEADER — CENTERED PREMIUM STYLE
========================================================= */

#benefits .benefits-header,
.benefits-section .benefits-header {

    position: relative !important;
    z-index: 5 !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 auto 60px !important;
    padding: 0 20px !important;

    text-align: center !important;
}


/* ---------------------------------------------------------
   MAIN HEADING
--------------------------------------------------------- */

#benefits .benefits-header h2,
.benefits-section .benefits-header h2 {

    margin: 0 auto !important;

    max-width: 900px !important;

    color: #ffffff !important;

    font-size: clamp(
        48px,
        5vw,
        72px
    ) !important;

    line-height: .98 !important;

    font-weight: 900 !important;

    letter-spacing: -3px !important;

    text-align: center !important;
}


/* Orange "Benefits" */

#benefits .benefits-header h2 span,
.benefits-section .benefits-header h2 span {

    color: #ff6b00 !important;
}


/* ---------------------------------------------------------
   SUBTITLE
--------------------------------------------------------- */

#benefits .benefits-header p,
.benefits-section .benefits-header p {

    width: 100% !important;

    max-width: 700px !important;

    margin:
        24px auto 0 !important;

    padding: 0 !important;

    color: #a8a8a8 !important;

    font-size: 15px !important;

    line-height: 1.65 !important;

    font-weight: 400 !important;

    text-align: center !important;
}


/* ---------------------------------------------------------
   DESKTOP
--------------------------------------------------------- */

@media (min-width: 1201px) {

    #benefits .benefits-header h2,
    .benefits-section .benefits-header h2 {

        font-size: 68px !important;

        letter-spacing: -3.5px !important;
    }

    #benefits .benefits-header p,
    .benefits-section .benefits-header p {

        font-size: 15px !important;

        margin-top: 22px !important;
    }

}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 1200px) {

    #benefits .benefits-header,
    .benefits-section .benefits-header {

        margin-bottom: 50px !important;
    }

    #benefits .benefits-header h2,
    .benefits-section .benefits-header h2 {

        font-size: 58px !important;

        letter-spacing: -3px !important;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 700px) {

    #benefits .benefits-header,
    .benefits-section .benefits-header {

        width: 100% !important;

        margin:
            0 auto 45px !important;

        padding:
            0 18px !important;

        text-align: center !important;
    }


    #benefits .benefits-header h2,
    .benefits-section .benefits-header h2 {

        max-width: 100% !important;

        font-size: 42px !important;

        line-height: 1 !important;

        letter-spacing: -2.5px !important;

        text-align: center !important;
    }


    #benefits .benefits-header p,
    .benefits-section .benefits-header p {

        max-width: 500px !important;

        margin:
            18px auto 0 !important;

        font-size: 13px !important;

        line-height: 1.6 !important;

        text-align: center !important;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 450px) {

    #benefits .benefits-header h2,
    .benefits-section .benefits-header h2 {

        font-size: 36px !important;

        letter-spacing: -2px !important;
    }

    #benefits .benefits-header p,
    .benefits-section .benefits-header p {

        font-size: 12px !important;
    }

}
/* =========================================================
   BENEFITS — HEADER + WIDTH FIX
========================================================= */

/* Center Benefits Heading */
#benefits .journey-header,
.benefits-section .journey-header {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 70px;
    text-align: center;
}

#benefits .journey-header h2,
.benefits-section .journey-header h2 {
    margin: 0;
    text-align: center;
}

#benefits .journey-header p,
.benefits-section .journey-header p {
    max-width: 1200px;
    margin: 25px auto 0;
    text-align: center;
}


/* Reduce Left + Right Gap of Benefits Cards */
#benefits .benefits-accordion,
.benefits-section .benefits-accordion {
    width: calc(100% - 10px) !important;
    max-width: none;
    margin-left: 2px;
    margin-right: 20px;
}


/* Desktop */
@media (min-width: 1201px) {

    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion {
        width: calc(100% - 10px) !important;
    }

}


/* Tablet */
@media (max-width: 1200px) and (min-width: 701px) {

    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion {
        width: calc(100% - 30px) !important;
    }

}


/* Mobile */
@media (max-width: 700px) {

    #benefits .journey-header,
    .benefits-section .journey-header {
        text-align: center;
        margin-bottom: 45px;
    }

    #benefits .journey-header h2,
    .benefits-section .journey-header h2 {
        text-align: center;
    }

    #benefits .journey-header p,
    .benefits-section .journey-header p {
        text-align: center;
    }

    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion {
        width: calc(100% - 20px) !important;
    }

}
/* =========================================================
   BENEFITS — FINAL DESKTOP ALIGNMENT
========================================================= */

@media (min-width: 1201px) {

    /* Benefits section */
    #benefits,
    .benefits-section {
        padding-left: 50px !important;
        padding-right: 50px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }


    /* Container — remove global narrow container */
    #benefits > .container,
    .benefits-section > .container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }


    /* ==============================
       BENEFITS HEADING
    ============================== */

    #benefits .journey-header,
    .benefits-section .journey-header {
        position: relative !important;

        width: 100% !important;
        max-width: none !important;

        margin: 0 auto 55px !important;
        padding: 0 !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        transform: none !important;

        text-align: center !important;
        box-sizing: border-box !important;
    }


    #benefits .journey-header h2,
    .benefits-section .journey-header h2 {
        width: 100% !important;
        max-width: 720px !important;

        margin: 0 auto !important;
        padding: 0 !important;

        text-align: center !important;

        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }


    #benefits .journey-header p,
    .benefits-section .journey-header p {
        width: 100% !important;
        max-width: 650px !important;

        margin: 18px auto 0 !important;
        padding: 0 !important;

        text-align: center !important;

        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }


    /* ==============================
       BENEFIT CARDS
       50px LEFT + 50px RIGHT GAP
    ============================== */

    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion {
        width: 100% !important;
        max-width: none !important;

        margin: 0 auto !important;
        padding: 0 !important;

        gap: 14px !important;

        overflow: hidden !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) and (min-width: 701px) {

    #benefits,
    .benefits-section {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    #benefits .journey-header,
    .benefits-section .journey-header {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto 45px !important;
        text-align: center !important;
    }

    #benefits .journey-header h2,
    .benefits-section .journey-header h2 {
        margin: 0 auto !important;
        text-align: center !important;
    }

    #benefits .journey-header p,
    .benefits-section .journey-header p {
        margin: 18px auto 0 !important;
        text-align: center !important;
    }

    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion {
        width: 100% !important;
        max-width: none !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    #benefits,
    .benefits-section {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    #benefits .journey-header,
    .benefits-section .journey-header {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto 40px !important;
        text-align: center !important;
        transform: none !important;
    }

    #benefits .journey-header h2,
    .benefits-section .journey-header h2 {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    #benefits .journey-header p,
    .benefits-section .journey-header p {
        width: 100% !important;
        margin: 18px auto 0 !important;
        text-align: center !important;
    }

    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
    }

}
/* =========================================================
   BENEFITS — FINAL TYPOGRAPHY + TITLE POSITION
========================================================= */


/* =========================================================
   1. BENEFITS MAIN HEADING — BIGGER
========================================================= */

#benefits .journey-header h2,
.benefits-section .journey-header h2 {
    font-size: 64px !important;
    line-height: 1.02 !important;
    letter-spacing: -2.5px !important;
    font-weight: 900 !important;
    text-align: center !important;
}


/* Description under heading */
#benefits .journey-header p,
.benefits-section .journey-header p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    max-width: 720px !important;
    margin: 20px auto 0 !important;
    text-align: center !important;
}


/* =========================================================
   2. CLOSED BENEFIT TITLES
   Start properly from the bottom
========================================================= */

@media (min-width: 701px) {

    #benefits .benefit-panel .benefit-title,
    .benefits-section .benefit-panel .benefit-title,

    #benefits .benefit-panel .benefit-content h3,
    .benefits-section .benefit-panel .benefit-content h3 {

        left: 50% !important;

        top: auto !important;

        bottom: 22px !important;

        transform:
            translateX(-50%)
            rotate(-90deg) !important;

        transform-origin: center center !important;

        margin: 0 !important;
        padding: 0 !important;

        width: max-content !important;
        max-width: none !important;

        white-space: nowrap !important;

        font-size: 22px !important;
        line-height: 1 !important;

        text-align: center !important;

        /* IMPORTANT */
        overflow: visible !important;
    }


    /* =====================================================
       3. LONG TITLES — GIVE THEM MORE ROOM
    ===================================================== */

    #benefits .benefit-panel .benefit-content,
    .benefits-section .benefit-panel .benefit-content {
        overflow: visible !important;
    }


    #benefits .benefit-panel,
    .benefits-section .benefit-panel {
        overflow: hidden !important;
    }


    /* =====================================================
       4. NUMBER
    ===================================================== */

    #benefits .benefit-no,
    .benefits-section .benefit-no {
        top: 28px !important;
        left: 26px !important;
        font-size: 46px !important;
    }

}


/* =========================================================
   5. OPEN CARD
   Bigger heading + proper bottom position
========================================================= */

@media (min-width: 701px) {

    #benefits .benefit-panel:hover .benefit-title,
    .benefits-section .benefit-panel:hover .benefit-title,

    #benefits .benefit-panel:hover .benefit-content h3,
    .benefits-section .benefit-panel:hover .benefit-content h3 {

        left: 30px !important;
        right: auto !important;

        top: auto !important;
        bottom: 58px !important;

        transform: none !important;

        width: auto !important;
        max-width: calc(100% - 60px) !important;

        white-space: normal !important;

        font-size: 32px !important;
        line-height: 1.05 !important;

        text-align: left !important;

        overflow: visible !important;
    }

}


/* =========================================================
   6. MOBILE
========================================================= */

@media (max-width: 700px) {

    #benefits .journey-header h2,
    .benefits-section .journey-header h2 {
        font-size: 42px !important;
        line-height: 1.02 !important;
        letter-spacing: -2px !important;
        text-align: center !important;
    }

    #benefits .journey-header p,
    .benefits-section .journey-header p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        text-align: center !important;
    }

}
/* =========================================================
   BENEFITS — CLOSED CARD TITLES
   FULL TITLE VISIBLE / BOTTOM ALIGNED
========================================================= */

@media (min-width: 701px) {

    #benefits .benefit-panel .benefit-title,
    .benefits-section .benefit-panel .benefit-title,

    #benefits .benefit-panel .benefit-content h3,
    .benefits-section .benefit-panel .benefit-content h3 {

        position: absolute !important;

        left: 50% !important;

        top: auto !important;
        bottom: 16px !important;

        margin: 0 !important;
        padding: 0 !important;

        width: max-content !important;
        max-width: none !important;

        white-space: nowrap !important;

        font-size: 21px !important;
        line-height: 1 !important;
        font-weight: 800 !important;

        text-align: center !important;

        /* KEY FIX */
        transform-origin: bottom center !important;

        transform:
            translateX(-50%)
            rotate(-90deg) !important;

        overflow: visible !important;

        z-index: 10 !important;
    }


    /* Make sure the actual text element is not clipped */
    #benefits .benefit-panel .benefit-content,
    .benefits-section .benefit-panel .benefit-content {

        overflow: visible !important;
    }


    /* Keep closed card itself clean */
    #benefits .benefit-panel,
    .benefits-section .benefit-panel {

        position: relative !important;
    }

}
/* =========================================================
   BENEFITS — CLOSED CARD TITLES
   FIX: NO CUTTING / FULLY INSIDE CARD
========================================================= */

@media (min-width: 701px) {

    #benefits .benefit-panel .benefit-title,
    .benefits-section .benefit-panel .benefit-title,

    #benefits .benefit-panel .benefit-content h3,
    .benefits-section .benefit-panel .benefit-content h3 {

        position: absolute !important;

        left: 50% !important;
        bottom: 24px !important;

        top: auto !important;

        width: auto !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        /* IMPORTANT — NO ROTATION */
        writing-mode: vertical-rl !important;
        text-orientation: mixed !important;

        transform:
            translateX(-50%)
            rotate(180deg) !important;

        transform-origin: center center !important;

        white-space: nowrap !important;

        font-size: 21px !important;
        line-height: 1 !important;
        font-weight: 800 !important;
        letter-spacing: -.3px !important;

        color: #fff !important;

        text-align: center !important;

        overflow: visible !important;

        z-index: 10 !important;
    }


    /* Make sure content doesn't clip the title */
    #benefits .benefit-panel .benefit-content,
    .benefits-section .benefit-panel .benefit-content {

        overflow: visible !important;
    }


    /* Card remains clipped only for its background/image */
    #benefits .benefit-panel,
    .benefits-section .benefit-panel {

        position: relative !important;
    }

}


/* =========================================================
   OPEN CARD — NORMAL HORIZONTAL TITLE
========================================================= */

@media (min-width: 701px) {

    #benefits .benefit-panel:hover .benefit-title,
    .benefits-section .benefit-panel:hover .benefit-title,

    #benefits .benefit-panel:hover .benefit-content h3,
    .benefits-section .benefit-panel:hover .benefit-content h3 {

        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;

        left: 30px !important;
        bottom: 58px !important;
        top: auto !important;

        width: auto !important;
        height: auto !important;

        transform: none !important;

        font-size: 32px !important;
        line-height: 1.05 !important;

        white-space: normal !important;

        text-align: left !important;

        max-width: calc(100% - 60px) !important;
    }

}


/* =========================================================
   BENEFITS — FINAL CARD SIZE + 5% SIDE GAPS
   Desktop: 30% shorter cards
========================================================= */

@media (min-width: 1201px) {

    /* 5% gap on both left and right sides */
    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion {
        width: 98% !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Reduce current 410px card height by 30% */
    #benefits .benefits-accordion,
    .benefits-section .benefits-accordion,
    #benefits .benefit-panel,
    .benefits-section .benefit-panel,
    #benefits .benefit-panel:hover,
    .benefits-section .benefit-panel:hover {
        height: 370px !important;
        min-height: 370px !important;
        max-height: 370px !important;
    }

}
/* =========================================================
   BENEFITS — ORANGE CARD BORDERS
========================================================= */

@media (min-width: 701px) {

    #benefits .benefit-panel,
    .benefits-section .benefit-panel {
        border: 1px solid #ff6b00 !important;
    }

    /* Hover par bhi orange border maintain rahe */
    #benefits .benefit-panel:hover,
    .benefits-section .benefit-panel:hover {
        border-color: #ff6b00 !important;
    }

}
/* =========================================================
   GLOBAL MOVING YELLOW DOT BACKGROUND
   Runs continuously across ALL sections
========================================================= */

.about-section,
.journey-section,
.benefits-section,
.placeholder-section,
.footer {
    position: relative;
    overflow: hidden;
}

/* Moving dots layer */
.about-section::after,
.journey-section::after,
.placeholder-section::after,
.footer::after {
    content: "";
    position: absolute;
    inset: -120px;

    pointer-events: none;

    z-index: 0;

    background-image:
        radial-gradient(circle at 8% 18%, rgba(255,101,0,.55) 0 2px, transparent 3px),
        radial-gradient(circle at 24% 72%, rgba(255,170,50,.42) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 42% 32%, rgba(255,101,0,.48) 0 2px, transparent 3px),
        radial-gradient(circle at 61% 82%, rgba(255,190,80,.38) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 78% 22%, rgba(255,101,0,.52) 0 2px, transparent 3px),
        radial-gradient(circle at 91% 66%, rgba(255,170,50,.42) 0 1.5px, transparent 2.5px);

    background-size:
        420px 420px,
        510px 510px,
        620px 620px,
        460px 460px,
        570px 570px,
        680px 680px;

    opacity: .42;

    animation:
        globalDotsMove 18s linear infinite;
}

/* Benefits already uses ::after for its grid,
   so particles use a different layer */
.benefits-section {
    isolation: isolate;
}

.benefits-section::before {
    z-index: 0;
}

.benefits-section .container {
    position: relative;
    z-index: 5;
}

.benefits-section::after {
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,101,0,.55) 0 2px, transparent 3px),
        radial-gradient(circle at 30% 75%, rgba(255,170,50,.42) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 52% 30%, rgba(255,101,0,.48) 0 2px, transparent 3px),
        radial-gradient(circle at 72% 80%, rgba(255,190,80,.38) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 90% 25%, rgba(255,101,0,.52) 0 2px, transparent 3px);

    background-size:
        430px 430px,
        520px 520px,
        610px 610px,
        470px 470px,
        650px 650px;

    opacity: .35;

    animation:
        globalDotsMove 20s linear infinite;

    z-index: 1;
}

/* Keep all actual content above particles */
.about-section > .container,
.journey-section > .container,
.placeholder-section > .container,
.footer > .container {
    position: relative;
    z-index: 5;
}

/* Continuous movement */
@keyframes globalDotsMove {

    0% {
        background-position:
            0 0,
            0 0,
            0 0,
            0 0,
            0 0,
            0 0;
    }

    50% {
        background-position:
            90px -70px,
            -110px 80px,
            120px -90px,
            -80px 100px,
            100px -60px,
            -130px 70px;
    }

    100% {
        background-position:
            180px -140px,
            -220px 160px,
            240px -180px,
            -160px 200px,
            200px -120px,
            -260px 140px;
    }
}

/* Mobile — slightly more subtle */
@media (max-width: 600px) {

    .about-section::after,
    .journey-section::after,
    .benefits-section::after,
    .placeholder-section::after,
    .footer::after {
        opacity: .28;
        animation-duration: 15s;
    }
}
/* =========================================================
   BENEFITS — MOVING DOTS ONLY
   Remove old grid and show animated orange/yellow dots
========================================================= */

#benefits::after,
.benefits-section::after {
    content: "" !important;
    position: absolute !important;
    inset: -100px !important;

    background-image:
        radial-gradient(circle, rgba(255, 107, 0, .75) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255, 180, 50, .65) 0 1.5px, transparent 2.5px),
        radial-gradient(circle, rgba(255, 107, 0, .55) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255, 210, 90, .55) 0 1.5px, transparent 2.5px);

    background-size:
        280px 280px,
        380px 380px,
        470px 470px,
        560px 560px;

    background-position:
        0 0,
        100px 80px,
        -80px 150px,
        180px -50px;

    background-repeat: repeat;

    opacity: .55 !important;

    animation: benefitsMovingDots 16s linear infinite !important;

    pointer-events: none !important;

    z-index: 1 !important;
}

/* Keep Benefits content/cards above dots */
#benefits > .container,
.benefits-section > .container {
    position: relative;
    z-index: 5;
}

/* Moving dots */
@keyframes benefitsMovingDots {

    0% {
        background-position:
            0 0,
            100px 80px,
            -80px 150px,
            180px -50px;
    }

    50% {
        background-position:
            140px -100px,
            -80px 180px,
            120px 20px,
            -100px 160px;
    }

    100% {
        background-position:
            280px -200px,
            -260px 280px,
            320px -110px,
            -280px 370px;
    }
}
/* =========================================================
   FINAL AI VOICE VISUAL FIX
========================================================= */

.ai-voice-core {
    width: 350px !important;
    height: 350px !important;
    position: relative !important;
    display: block !important;
    z-index: 20 !important;
}

/* =========================================================
   PREMIUM AI ENERGY CORE
========================================================= */

.ai-energy-core {
    position: relative !important;

    width: 520px !important;
    height: 520px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    perspective: 1000px !important;
}


/* =========================================================
   MAIN ENERGY CORE
========================================================= */

.energy-core {
    position: absolute !important;

    width: 175px !important;
    height: 175px !important;

    left: 50% !important;
    top: 50% !important;

    transform: translate(-50%, -50%) !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle at 34% 25%,
            #ffffff 0%,
            #fff4e8 4%,
            #ffc080 9%,
            #ff7914 20%,
            #ff4d00 42%,
            #b82d00 68%,
            #351000 88%,
            #100500 100%
        ) !important;

    border: 1px solid rgba(255,170,90,.8) !important;

    box-shadow:
        0 0 15px rgba(255,255,255,.45),
        0 0 35px rgba(255,130,30,.95),
        0 0 75px rgba(255,90,0,.85),
        0 0 130px rgba(255,70,0,.55),
        0 0 210px rgba(255,60,0,.30) !important;

    z-index: 8 !important;

    animation:
        energyCoreFloat 4s ease-in-out infinite,
        energyCoreGlow 3s ease-in-out infinite !important;
}


/* =========================================================
   CORE HIGHLIGHT
========================================================= */

.core-highlight {
    position: absolute !important;

    width: 65px !important;
    height: 65px !important;

    top: 17px !important;
    left: 27px !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,.95) 12%,
            rgba(255,230,200,.65) 35%,
            transparent 75%
        ) !important;

    filter: blur(3px) !important;

    opacity: .95 !important;

    z-index: 3 !important;
}


/* =========================================================
   INNER CORE GLOW
========================================================= */

.core-glow {
    position: absolute !important;

    inset: 18px !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle,
            rgba(255,190,100,.30),
            transparent 68%
        ) !important;

    filter: blur(8px) !important;

    animation: innerEnergy 2.5s ease-in-out infinite !important;
}


/* =========================================================
   ENERGY RINGS
========================================================= */

.energy-ring {
    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    border-radius: 50% !important;

    pointer-events: none !important;

    transform-style: preserve-3d !important;

    z-index: 4 !important;
}


/* Ring 1 */

.ring-1 {
    width: 235px !important;
    height: 235px !important;

    border:
        1px solid rgba(255,101,0,.55) !important;

    box-shadow:
        0 0 20px rgba(255,101,0,.18),
        inset 0 0 20px rgba(255,101,0,.08) !important;

    transform:
        translate(-50%, -50%)
        rotateX(68deg) !important;

    animation:
        ringRotate1 8s linear infinite !important;
}


/* Ring 2 */

.ring-2 {
    width: 290px !important;
    height: 290px !important;

    border:
        1px solid rgba(255,160,70,.35) !important;

    border-left-color:
        rgba(255,101,0,.9) !important;

    border-right-color:
        rgba(255,101,0,.05) !important;

    transform:
        translate(-50%, -50%)
        rotateY(70deg) !important;

    animation:
        ringRotate2 10s linear infinite !important;
}


/* Ring 3 */

.ring-3 {
    width: 345px !important;
    height: 345px !important;

    border:
        1px dashed rgba(255,101,0,.22) !important;

    transform:
        translate(-50%, -50%)
        rotateX(62deg)
        rotateZ(20deg) !important;

    animation:
        ringRotate3 15s linear infinite reverse !important;
}


/* =========================================================
   WAVEFORM
========================================================= */

.ai-wave {
    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    width: 115px !important;
    height: 78px !important;

    transform:
        translate(-50%, -50%) !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 5px !important;

    z-index: 15 !important;

    pointer-events: none !important;
}


.ai-wave span {
    width: 4px !important;

    border-radius: 20px !important;

    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #fff5e9
        ) !important;

    box-shadow:
        0 0 8px #ffffff,
        0 0 18px rgba(255,101,0,.95),
        0 0 28px rgba(255,101,0,.55) !important;

    animation:
        premiumWave 1.05s ease-in-out infinite !important;
}


.ai-wave span:nth-child(1) {
    height: 14px !important;
    animation-delay: -.85s !important;
}

.ai-wave span:nth-child(2) {
    height: 25px !important;
    animation-delay: -.72s !important;
}

.ai-wave span:nth-child(3) {
    height: 42px !important;
    animation-delay: -.59s !important;
}

.ai-wave span:nth-child(4) {
    height: 57px !important;
    animation-delay: -.46s !important;
}

.ai-wave span:nth-child(5) {
    height: 38px !important;
    animation-delay: -.33s !important;
}

.ai-wave span:nth-child(6) {
    height: 62px !important;
    animation-delay: -.20s !important;
}

.ai-wave span:nth-child(7) {
    height: 45px !important;
    animation-delay: -.07s !important;
}

.ai-wave span:nth-child(8) {
    height: 27px !important;
    animation-delay: .06s !important;
}

.ai-wave span:nth-child(9) {
    height: 14px !important;
    animation-delay: .19s !important;
}


/* =========================================================
   PARTICLE FIELD
========================================================= */

.energy-particles {
    position: absolute !important;

    width: 390px !important;
    height: 390px !important;

    left: 50% !important;
    top: 50% !important;

    transform:
        translate(-50%, -50%) !important;

    border-radius: 50% !important;

    background-image:
        radial-gradient(circle, rgba(255,160,60,.9) 0 1.5px, transparent 2px),
        radial-gradient(circle, rgba(255,100,0,.75) 0 1px, transparent 2px),
        radial-gradient(circle, rgba(255,220,150,.65) 0 1px, transparent 2px);

    background-size:
        85px 85px,
        125px 125px,
        170px 170px;

    background-position:
        0 0,
        35px 60px,
        -40px 25px;

    opacity: .7 !important;

    filter:
        drop-shadow(0 0 5px rgba(255,101,0,.8)) !important;

    animation:
        particleOrbit 18s linear infinite !important;

    z-index: 2 !important;

    pointer-events: none !important;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes energyCoreFloat {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.045);
    }
}


@keyframes energyCoreGlow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.18);
    }
}


@keyframes innerEnergy {

    0%,
    100% {
        opacity: .45;
        transform: scale(.9);
    }

    50% {
        opacity: .9;
        transform: scale(1.08);
    }
}


@keyframes premiumWave {

    0%,
    100% {
        transform: scaleY(.35);
        opacity: .55;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}


@keyframes ringRotate1 {

    from {
        transform:
            translate(-50%, -50%)
            rotateX(68deg)
            rotateZ(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotateX(68deg)
            rotateZ(360deg);
    }
}


@keyframes ringRotate2 {

    from {
        transform:
            translate(-50%, -50%)
            rotateY(70deg)
            rotateZ(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotateY(70deg)
            rotateZ(-360deg);
    }
}


@keyframes ringRotate3 {

    from {
        transform:
            translate(-50%, -50%)
            rotateX(62deg)
            rotateZ(20deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotateX(62deg)
            rotateZ(380deg);
    }
}


@keyframes particleOrbit {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg)
            scale(1);
    }

    50% {
        transform:
            translate(-50%, -50%)
            rotate(180deg)
            scale(1.04);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg)
            scale(1);
    }
}

/* MAIN GLOWING AI CORE */

.ai-voice-core .orb-core {
    position: absolute !important;

    width: 170px !important;
    height: 170px !important;

    left: 50% !important;
    top: 50% !important;

    transform: translate(-50%, -50%) !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle at 35% 28%,
            #fff7ed 0%,
            #ffd0a0 5%,
            #ff9a42 14%,
            #ff6500 32%,
            #df4700 55%,
            #8b2600 78%,
            #260b00 100%
        ) !important;

    border: 2px solid rgba(255,140,50,.55) !important;

    box-shadow:
        0 0 25px rgba(255,101,0,.9),
        0 0 60px rgba(255,101,0,.65),
        0 0 110px rgba(255,101,0,.40),
        0 0 180px rgba(255,101,0,.20) !important;

    z-index: 5 !important;

    animation: finalAiCore 4s ease-in-out infinite !important;
}

/* BRIGHT LIGHT INSIDE CORE */

.ai-voice-core .orb-core::before {
    content: "" !important;

    position: absolute !important;

    width: 55px !important;
    height: 55px !important;

    left: 27px !important;
    top: 22px !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.98) 0%,
            rgba(255,236,210,.75) 25%,
            rgba(255,180,100,.25) 55%,
            transparent 75%
        ) !important;

    filter: blur(2px) !important;
}

/* OUTER AI AURA */

.ai-voice-core .orb-core::after {
    content: "" !important;

    position: absolute !important;

    inset: -18px !important;

    border-radius: 50% !important;

    border: 1px solid rgba(255,101,0,.35) !important;

    box-shadow:
        0 0 35px rgba(255,101,0,.25),
        inset 0 0 35px rgba(255,101,0,.12) !important;

    animation: finalAiAura 3s ease-in-out infinite !important;
}

/* VOICE PULSES */

.ai-voice-core .voice-pulse {
    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    width: 190px !important;
    height: 190px !important;

    border: 1px solid rgba(255,101,0,.30) !important;

    border-radius: 50% !important;

    transform: translate(-50%, -50%) scale(.55) !important;

    opacity: 0 !important;

    z-index: 1 !important;

    pointer-events: none !important;
}

.ai-voice-core .pulse-one {
    animation: finalVoicePulse 3.2s ease-out infinite !important;
}

.ai-voice-core .pulse-two {
    animation: finalVoicePulse 3.2s ease-out 1.05s infinite !important;
}

.ai-voice-core .pulse-three {
    animation: finalVoicePulse 3.2s ease-out 2.1s infinite !important;
}

/* VOICE WAVE */

.ai-voice-core .voice-wave {
    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    width: 110px !important;
    height: 70px !important;

    transform: translate(-50%, -50%) !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 5px !important;

    z-index: 10 !important;

    pointer-events: none !important;
}

.ai-voice-core .voice-wave span {
    width: 4px !important;

    border-radius: 10px !important;

    background: #ffffff !important;

    box-shadow:
        0 0 8px rgba(255,255,255,.9),
        0 0 16px rgba(255,101,0,.8) !important;

    animation: finalVoiceBars 1.1s ease-in-out infinite !important;
}

.ai-voice-core .voice-wave span:nth-child(1) {
    height: 16px !important;
    animation-delay: -.8s !important;
}

.ai-voice-core .voice-wave span:nth-child(2) {
    height: 28px !important;
    animation-delay: -.65s !important;
}

.ai-voice-core .voice-wave span:nth-child(3) {
    height: 44px !important;
    animation-delay: -.5s !important;
}

.ai-voice-core .voice-wave span:nth-child(4) {
    height: 58px !important;
    animation-delay: -.35s !important;
}

.ai-voice-core .voice-wave span:nth-child(5) {
    height: 38px !important;
    animation-delay: -.2s !important;
}

.ai-voice-core .voice-wave span:nth-child(6) {
    height: 62px !important;
    animation-delay: -.05s !important;
}

.ai-voice-core .voice-wave span:nth-child(7) {
    height: 45px !important;
    animation-delay: .1s !important;
}

.ai-voice-core .voice-wave span:nth-child(8) {
    height: 27px !important;
    animation-delay: .25s !important;
}

.ai-voice-core .voice-wave span:nth-child(9) {
    height: 16px !important;
    animation-delay: .4s !important;
}

@keyframes finalAiCore {

    0%, 100% {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.04);
    }
}

@keyframes finalAiAura {

    0%, 100% {
        transform: scale(.92);
        opacity: .35;
    }

    50% {
        transform: scale(1.08);
        opacity: .75;
    }
}

@keyframes finalVoicePulse {

    0% {
        transform:
            translate(-50%, -50%)
            scale(.55);

        opacity: 0;
    }

    15% {
        opacity: .55;
    }

    75% {
        opacity: .12;
    }

    100% {
        transform:
            translate(-50%, -50%)
            scale(1.65);

        opacity: 0;
    }
}

@keyframes finalVoiceBars {

    0%, 100% {
        transform: scaleY(.45);
        opacity: .55;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}
/* =========================================================
   DEFINITIVE AI CORE
========================================================= */

.ai-core-ball {
    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    width: 190px !important;
    height: 190px !important;

    transform: translate(-50%, -50%) !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle at 34% 27%,
            #ffffff 0%,
            #ffe1bd 5%,
            #ffad5c 12%,
            #ff7200 27%,
            #f04f00 48%,
            #a72d00 70%,
            #3b1000 100%
        ) !important;

    border: 2px solid rgba(255,150,70,.8) !important;

    box-shadow:
        0 0 20px rgba(255,101,0,1),
        0 0 50px rgba(255,101,0,.85),
        0 0 100px rgba(255,101,0,.6),
        0 0 170px rgba(255,101,0,.35),
        0 0 240px rgba(255,101,0,.18) !important;

    z-index: 20 !important;

    display: block !important;

    opacity: 1 !important;

    visibility: visible !important;

    pointer-events: none !important;

    animation: definitiveCorePulse 3.5s ease-in-out infinite !important;
}


/* bright reflection */

.ai-core-ball::before {
    content: "" !important;

    position: absolute !important;

    width: 65px !important;
    height: 65px !important;

    left: 25px !important;
    top: 20px !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle,
            #ffffff 0%,
            rgba(255,245,230,.95) 20%,
            rgba(255,190,120,.55) 45%,
            transparent 75%
        ) !important;

    filter: blur(2px) !important;
}


/* outer glow ring */

.ai-core-ball::after {
    content: "" !important;

    position: absolute !important;

    inset: -15px !important;

    border-radius: 50% !important;

    border: 1px solid rgba(255,101,0,.35) !important;

    box-shadow:
        0 0 30px rgba(255,101,0,.35),
        inset 0 0 30px rgba(255,101,0,.2) !important;

    animation: definitiveCoreAura 3s ease-in-out infinite !important;
}


@keyframes definitiveCorePulse {

    0%,
    100% {
        transform:
            translate(-50%, -50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%, -50%)
            scale(1.06);
    }

}


@keyframes definitiveCoreAura {

    0%,
    100% {
        transform: scale(.92);
        opacity: .4;
    }

    50% {
        transform: scale(1.08);
        opacity: .9;
    }

}
/* =========================================================
   AI BRAIN HERO VISUAL
========================================================= */

.ai-brain-visual {
    position: relative;
    width: 520px;
    height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    isolation: isolate;
}


/* BRAIN IMAGE */

.brain-image {
    position: relative;

    width: 310px;
    height: 310px;

    object-fit: contain;

    z-index: 10;

    filter:
        drop-shadow(0 0 12px rgba(255,101,0,.95))
        drop-shadow(0 0 35px rgba(255,101,0,.65))
        drop-shadow(0 0 75px rgba(255,101,0,.35));

    animation: brainFloat 4s ease-in-out infinite;
}


/* SOFT GLOW BEHIND BRAIN */

.brain-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,101,0,.30) 0%,
            rgba(255,101,0,.15) 35%,
            transparent 72%
        );

    filter: blur(25px);

    z-index: 1;

    animation: brainGlow 3s ease-in-out infinite;
}


/* ORBIT RINGS */

.brain-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    border: 1px solid rgba(255,101,0,.28);

    pointer-events: none;

    z-index: 3;
}


/* horizontal orbit */

.orbit-1 {
    width: 470px;
    height: 155px;

    transform:
        translate(-50%, -50%)
        rotate(-8deg);

    animation: orbitOne 12s linear infinite;
}


/* vertical orbit */

.orbit-2 {
    width: 190px;
    height: 470px;

    transform:
        translate(-50%, -50%)
        rotate(25deg);

    border-color: rgba(255,101,0,.20);

    animation: orbitTwo 15s linear infinite;
}


/* diagonal orbit */

.orbit-3 {
    width: 430px;
    height: 250px;

    transform:
        translate(-50%, -50%)
        rotate(48deg);

    border-color: rgba(255,150,70,.18);

    animation: orbitThree 18s linear infinite reverse;
}


/* ORBIT GLOW */

.brain-orbit::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ff6500;

    box-shadow:
        0 0 8px #ff6500,
        0 0 20px #ff6500,
        0 0 35px rgba(255,101,0,.7);

    top: 50%;
    right: -2px;

    transform: translateY(-50%);
}


/* ANIMATIONS */

@keyframes brainFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.025);
    }
}


@keyframes brainGlow {

    0%,
    100% {
        opacity: .55;
        transform: translate(-50%, -50%) scale(.92);
    }

    50% {
        opacity: .9;
        transform: translate(-50%, -50%) scale(1.08);
    }
}


@keyframes orbitOne {

    from {
        transform:
            translate(-50%, -50%)
            rotate(-8deg)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(-8deg)
            rotate(360deg);
    }
}


@keyframes orbitTwo {

    from {
        transform:
            translate(-50%, -50%)
            rotate(25deg)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(25deg)
            rotate(-360deg);
    }
}


@keyframes orbitThree {

    from {
        transform:
            translate(-50%, -50%)
            rotate(48deg)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(48deg)
            rotate(360deg);
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .ai-brain-visual {
        width: 430px;
        height: 430px;
    }

    .brain-image {
        width: 270px;
        height: 270px;
    }

    .orbit-1 {
        width: 390px;
    }

    .orbit-2 {
        height: 390px;
    }

    .orbit-3 {
        width: 360px;
    }
}
/* =========================================================
   CODE BASED AI BRAIN
========================================================= */

.ai-brain-visual {
    position: relative;

    width: 520px;
    height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    isolation: isolate;
}


/* =========================================================
   BRAIN
========================================================= */

.brain-code {
    position: relative;

    width: 285px;
    height: 285px;

    z-index: 10;

    filter:
        drop-shadow(0 0 8px rgba(255,101,0,.95))
        drop-shadow(0 0 25px rgba(255,101,0,.65))
        drop-shadow(0 0 55px rgba(255,101,0,.35));

    animation: brainFloat 4s ease-in-out infinite;
}


.brain-svg {
    width: 100%;
    height: 100%;

    overflow: visible;
}


/* BRAIN OUTLINE */

.brain-outline {
    fill: rgba(255,101,0,.035);

    stroke: #ff6500;

    stroke-width: 5;

    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(0 0 5px rgba(255,101,0,.9))
        drop-shadow(0 0 12px rgba(255,101,0,.55));

    animation: brainOutlineGlow 3s ease-in-out infinite;
}


/* CENTER DIVIDER */

.brain-center {
    fill: none;

    stroke: #ff6500;

    stroke-width: 4;

    stroke-linecap: round;

    filter:
        drop-shadow(0 0 6px rgba(255,101,0,.8));
}


/* =========================================================
   CIRCUIT LINES
========================================================= */

.brain-circuit path {
    fill: none;

    stroke: #ff6500;

    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;

    opacity: .95;

    filter:
        drop-shadow(0 0 5px rgba(255,101,0,.75));
}


.brain-circuit circle {
    fill: #ff8a24;

    stroke: #ff6500;

    stroke-width: 2;

    filter:
        drop-shadow(0 0 6px rgba(255,101,0,1));

    animation: nodePulse 2s ease-in-out infinite;
}


.brain-nodes circle {
    fill: #ffb15c;

    filter:
        drop-shadow(0 0 5px rgba(255,101,0,.9));

    animation: nodePulse 1.8s ease-in-out infinite;
}


/* =========================================================
   VOICE WAVE
========================================================= */

.brain-voice-wave {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 150px;
    height: 80px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    z-index: 30;

    padding: 0;

    /* NO BLACK BOX */
    background: transparent;

    border: none;

    box-shadow: none;

    backdrop-filter: none;
}


.brain-voice-wave span {
    width: 4px;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 0 6px #ffffff,
        0 0 14px rgba(255,101,0,.9);

    animation:
        brainVoice 1s ease-in-out infinite;
}


/* DIFFERENT WAVE HEIGHTS */

.brain-voice-wave span:nth-child(1) {
    height: 16px;
    animation-delay: -.9s;
}

.brain-voice-wave span:nth-child(2) {
    height: 28px;
    animation-delay: -.8s;
}

.brain-voice-wave span:nth-child(3) {
    height: 42px;
    animation-delay: -.7s;
}

.brain-voice-wave span:nth-child(4) {
    height: 58px;
    animation-delay: -.6s;
}

.brain-voice-wave span:nth-child(5) {
    height: 38px;
    animation-delay: -.5s;
}

.brain-voice-wave span:nth-child(6) {
    height: 68px;
    animation-delay: -.4s;
}

.brain-voice-wave span:nth-child(7) {
    height: 46px;
    animation-delay: -.3s;
}

.brain-voice-wave span:nth-child(8) {
    height: 62px;
    animation-delay: -.2s;
}

.brain-voice-wave span:nth-child(9) {
    height: 40px;
    animation-delay: -.1s;
}

.brain-voice-wave span:nth-child(10) {
    height: 27px;
    animation-delay: 0s;
}

.brain-voice-wave span:nth-child(11) {
    height: 15px;
    animation-delay: .1s;
}


/* =========================================================
   SUBTLE ORBITS
========================================================= */

.brain-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    pointer-events: none;

    z-index: 2;
}

.brain-orbit-1 {
    width: 470px;
    height: 150px;

    border:
        1px solid rgba(255,101,0,.18);

    transform:
        translate(-50%, -50%)
        rotate(-12deg);

    animation:
        brainOrbitOne 14s linear infinite;
}

.brain-orbit-2 {
    width: 200px;
    height: 470px;

    border:
        1px solid rgba(255,101,0,.14);

    transform:
        translate(-50%, -50%)
        rotate(28deg);

    animation:
        brainOrbitTwo 18s linear infinite reverse;
}
.brain-orbit-1,
.brain-orbit-2 {
    border: 1px solid rgba(255,101,0,.22);
}


/* SMALL ORBIT DOTS */

.brain-orbit::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ff6500;

    box-shadow:
        0 0 8px #ff6500,
        0 0 20px rgba(255,101,0,.8);

    right: 0;
    top: 50%;

    transform:
        translateY(-50%);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes brainFloat {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-7px)
            scale(1.02);
    }
}


@keyframes brainOutlineGlow {

    0%,
    100% {
        opacity: .82;
    }

    50% {
        opacity: 1;
    }
}


@keyframes nodePulse {

    0%,
    100% {
        opacity: .65;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}


@keyframes brainVoice {

    0%,
    100% {
        transform: scaleY(.35);
        opacity: .55;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}


@keyframes brainOrbitOne {

    from {
        transform:
            translate(-50%, -50%)
            rotate(-12deg)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(-12deg)
            rotate(360deg);
    }
}


@keyframes brainOrbitTwo {

    from {
        transform:
            translate(-50%, -50%)
            rotate(28deg)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(28deg)
            rotate(-360deg);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1100px) {

    .ai-brain-visual {
        width: 430px;
        height: 430px;
    }

    .brain-code {
        width: 290px;
        height: 290px;
    }

    .brain-orbit-1 {
        width: 390px;
    }

    .brain-orbit-2 {
        height: 390px;
    }

}


@media (max-width: 700px) {

    .ai-brain-visual {
        width: 340px;
        height: 340px;
    }

    .brain-code {
        width: 235px;
        height: 235px;
    }

    .brain-voice-wave {
        width: 125px;
        height: 65px;
    }

    .brain-orbit-1 {
        width: 310px;
        height: 105px;
    }

    .brain-orbit-2 {
        width: 140px;
        height: 310px;
    }

}
/* =========================================================
   ACTIVE NAV BUTTON
========================================================= */

.nav-links a.active {
    color: #ffffff !important;
    background: #ff6500 !important;
    border-color: #ff6500 !important;

    box-shadow:
        0 4px 14px rgba(255, 101, 0, .22);

    transform: none;
}

.nav-links a.active:hover {
    color: #ffffff !important;
    background: #ff6500 !important;
    border-color: #ff6500 !important;
}


/* Normal buttons */

.nav-links a:not(.active) {
    color: #888;
    background: transparent;
    border-color: transparent;
}


/* Hover on non-active buttons */

.nav-links a:not(.active):hover {
    color: #ffffff !important;
    background: #ff6500 !important;
    border-color: #ff6500 !important;

    box-shadow:
        0 4px 14px rgba(255, 101, 0, .22);

    transform: translateY(-1px);
}


/* Remove old underline */

.nav-links a::before,
.nav-links a::after {
    display: none !important;
}
/* =========================================================
   CULTURE — FINAL PREMIUM / BALANCED
========================================================= */

/* =========================================================
   CULTURE BACKGROUND
========================================================= */

#culture {
    position: relative;
    width: 100%;

    padding: 125px 0 90px;

    overflow: hidden;

    /* Global website background remains visible */
    background: transparent !important;
}


/* Subtle orange atmospheric glow */

#culture::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(255, 102, 0, 0.068),
            transparent 26%
        ),

        radial-gradient(
            circle at 90% 70%,
            rgba(255, 102, 0, 0.089),
            transparent 30%
        ),

        radial-gradient(
            circle at 50% 50%,
            rgba(255, 102, 0, 0.021),
            transparent 45%
        );

    opacity: .75;

    z-index: 0;
}


/* Keep all Culture content above background */

#culture > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

#culture .section-heading {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 20px auto 40px;

    padding: 0 20px;

    box-sizing: border-box;

    text-align: center;

    color: #fff;

    font-size: clamp(48px, 5vw, 72px);

    font-weight: 900;

    /*
       VERY TIGHT LINE SPACING
       between:
       Meet the people
       building it.
    */

    line-height: .60;

    letter-spacing: -3.5px;
}


#culture .section-heading span {
    display: block;

    margin-top: 0;

    color: #ff6500;
}


/* =========================================================
   SUBTITLE
========================================================= */

#culture .section-subtitle {
    display: none !important;
}


/* =========================================================
   CAROUSEL WRAPPER
========================================================= */

.team-carousel-wrapper {
    position: relative;

    z-index: 2;

    width: 100%;

    overflow: visible;

    display: flex;

    justify-content: center;
}


/* =========================================================
   CAROUSEL
   CENTER THE 5 CARDS
========================================================= */

.team-carousel {

    display: flex;

    align-items: stretch;

    justify-content: center;

    gap: 30px;

    width: auto;

    max-width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    /*
       Equal left/right breathing room
    */

    padding:
        0 50px 25px;

    box-sizing: border-box;

    scroll-behavior: smooth;

    scrollbar-width: none;

    scroll-snap-type: x mandatory;
}


.team-carousel::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   CARD
========================================================= */

.team-card {

    position: relative;

    flex: 0 0 245px;

    width: 245px;

    min-width: 245px;

    height: 336px;

    padding: 25px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    scroll-snap-align: center;

    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(255,101,0,.055),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(18,19,25,.97),
            rgba(7,8,12,.99)
        );

    border:
        1px solid rgba(255,101,0,.32);

    border-radius: 24px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.38),
        inset 0 1px 0 rgba(255,255,255,.045);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}



/* =========================================================
   CARD HOVER
========================================================= */

.team-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(255,101,0,.70);

    box-shadow:
        0 24px 50px rgba(0,0,0,.45),
        0 0 25px rgba(255,101,0,.08);
}


/* =========================================================
   IMAGE
========================================================= */

.team-card img {

    width: 68px;

    height: 68px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 50%;

    margin:
        1px 0 16px;

    border:
        2px solid rgba(255, 102, 0, 0.629);
}


/* =========================================================
   NAME
========================================================= */

.team-card h3 {

    margin:
        0 0 5px;

    color: #fff;

    font-size: 20px;

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -.5px;
}


/* =========================================================
   ROLE
========================================================= */

.team-card small {

    display: block;

    color: #85858b;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 500;
}


/* =========================================================
   QUOTE — MOVED UP
========================================================= */

.team-card p {

    margin:
        15px 0 14px;

    max-width: 100%;

    color: #eeeeee;

    font-size: 13px;

    line-height: 1.4;

    font-weight: 500;
}


/* =========================================================
   CULTURE VOICE
========================================================= */

.team-tag {

    align-self: flex-start;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: auto;

    padding:
        8px 16px;

    color: #ff7918;

    background:
        rgba(255,101,0,.06);

    border:
        1px solid rgba(255,101,0,.50);

    border-radius: 30px;

    font-size: 11px;

    font-weight: 700;

    line-height: 1;

    white-space: nowrap;
}


/* =========================================================
   ARROWS
========================================================= */

.team-nav {

    position: absolute;

    top: 50%;

    z-index: 30;

    width: 56px;

    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform:
        translateY(-50%);

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    background:
        rgba(7,8,11,.94);

    color: #fff;

    font-size: 27px;

    cursor: pointer;

    box-shadow:
        0 12px 30px rgba(0,0,0,.45);

    transition:
        .25s ease;
}


.team-nav:hover {

    background:
        #ff6500;

    border-color:
        #ff6500;

    transform:
        translateY(-50%) scale(1.05);

    box-shadow:
        0 10px 30px rgba(255,101,0,.25);
}


.prev-btn {
    left: 60px;
}


.next-btn {
    right: 60px;
}


/* =========================================================
   REMOVE EXTRA FADE
========================================================= */

.team-carousel-wrapper::after {
    display: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1300px) {

    .team-carousel {

        justify-content: flex-start;

        gap: 25px;

        padding-left: 35px;
        padding-right: 70px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    #culture {

        padding:
            90px 0 75px;
    }


    #culture .section-heading {

        font-size:
            48px;

        line-height:
            .76;

        letter-spacing:
            -2.5px;

        margin-bottom:
            25px;
    }


    .team-carousel {

        justify-content:
            flex-start;

        gap:
            22px;

        padding-left:
            25px;

        padding-right:
            50px;
    }


    .team-card {

        flex:
            0 0 245px;

        width:
            245px;

        min-width:
            245px;

        height:
            336px;
    }


    .team-card p {

        margin-top:
            28px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    #culture .section-heading {

        font-size:
            40px;

        line-height:
            .80;
    }


    .team-card {

        flex:
            0 0 calc(100vw - 55px);

        width:
            calc(100vw - 55px);

        min-width:
            calc(100vw - 55px);
    }
}
/* =========================================================
   CULTURE — GLOBAL MOVING DOTS
========================================================= */

#culture {
    position: relative;
    overflow: hidden;

    /* Keep the main website background */
    background: transparent !important;
}


/* Moving dots */

#culture::after {
    content: "";

    position: absolute;

    inset: -120px;

    pointer-events: none;

    z-index: 1;

    background-image:
        radial-gradient(
            circle at 8% 18%,
            rgba(255,101,0,.55) 0 2px,
            transparent 3px
        ),

        radial-gradient(
            circle at 24% 72%,
            rgba(255,170,50,.42) 0 1.5px,
            transparent 2.5px
        ),

        radial-gradient(
            circle at 42% 32%,
            rgba(255,101,0,.48) 0 2px,
            transparent 3px
        ),

        radial-gradient(
            circle at 61% 82%,
            rgba(255,190,80,.38) 0 1.5px,
            transparent 2.5px
        ),

        radial-gradient(
            circle at 78% 22%,
            rgba(255,101,0,.52) 0 2px,
            transparent 3px
        ),

        radial-gradient(
            circle at 91% 66%,
            rgba(255,170,50,.42) 0 1.5px,
            transparent 2.5px
        );

    background-size:
        420px 420px,
        510px 510px,
        620px 620px,
        460px 460px,
        570px 570px,
        680px 680px;

    opacity: .42;

    animation:
        globalDotsMove 18s linear infinite;
}


/* Keep Culture content above dots */

#culture > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   MOVEMENT
========================================================= */

@keyframes globalDotsMove {

    0% {
        background-position:
            0 0,
            0 0,
            0 0,
            0 0,
            0 0,
            0 0;
    }

    50% {
        background-position:
            90px -70px,
            -110px 80px,
            120px -90px,
            -80px 100px,
            100px -60px,
            -130px 70px;
    }

    100% {
        background-position:
            180px -140px,
            -220px 160px,
            240px -180px,
            -160px 200px,
            200px -120px,
            -260px 140px;
    }
}
/* =========================================================
   ABOUT SECTION — PREMIUM DARK AI STYLE
========================================================= */

#about {
    position: relative;
    min-height: 100vh;
    padding: 20px 0 30px;

    background:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        #05060a;

    background-size: 48px 48px;

    overflow: hidden;
    isolation: isolate;
}


/* =========================================================
   ABOUT SECTION — CLEAN / FINAL
========================================================= */

#about {
    position: relative;
    width: 100%;
    padding: 125px 0 85px !important;
    min-height: auto !important;
    overflow: hidden !important;
    background: transparent !important;
    isolation: isolate;
}


/* =========================================================
   MOVING ORANGE DOTS
========================================================= */

#about::after {
    content: "";
    position: absolute;
    inset: -180px;
    pointer-events: none;
    z-index: 1;

    background-image:
        radial-gradient(circle at 8% 18%, rgba(255,101,0,.70) 0 2px, transparent 3px),
        radial-gradient(circle at 24% 72%, rgba(255,170,50,.62) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 42% 32%, rgba(255,101,0,.58) 0 2px, transparent 3px),
        radial-gradient(circle at 61% 82%, rgba(255,190,80,.55) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 78% 22%, rgba(255,101,0,.62) 0 2px, transparent 3px),
        radial-gradient(circle at 91% 66%, rgba(255,170,50,.52) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 16% 48%, rgba(255,101,0,.50) 0 1.8px, transparent 3px),
        radial-gradient(circle at 70% 52%, rgba(255,190,80,.48) 0 1.4px, transparent 2.5px);

    background-size:
        260px 260px,
        340px 340px,
        430px 430px,
        520px 520px,
        310px 310px,
        470px 470px,
        590px 590px,
        680px 680px;

    opacity: .58;
    animation: aboutDotsMove 16s linear infinite;
}


/* =========================================================
   CONTENT ABOVE DOTS
========================================================= */

#about > * {
    position: relative;
    z-index: 3;
}


/* =========================================================
   SECTION HEADING
========================================================= */

#about .section-heading {
    position: relative;
    z-index: 3;
    text-align: center;
    margin: 0 auto 22px !important;
    padding: 0;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1 !important;
    font-weight: 800;
    letter-spacing: -3px;
    color: #ffffff;
}

#about .section-heading span {
    color: #ff6b00;
}


/* =========================================================
   SUBTITLE
========================================================= */

#about .section-subtitle {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto 48px !important;
    text-align: center;
    color: #b5b5b8;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}


/* =========================================================
   MAIN ABOUT GRID
========================================================= */

#about .about-grid {
    position: relative;
    z-index: 3;
    width: 86%;
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.55fr .95fr;
    gap: 20px;
    align-items: start;
}


/* =========================================================
   MAIN LEFT CARD
========================================================= */

#about .about-main-card {
    position: relative;
    min-height: 0;
    height: auto;
    padding: 26px 24px 26px;
    background: rgba(10, 11, 17, .92);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    box-shadow:
        0 25px 70px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.025);
    overflow: hidden;
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


/* No separate orange glow inside the main card */


/* =========================================================
   ORANGE BADGE
========================================================= */

#about .about-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #ff7818;
    color: #080808;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -.1px;
    margin-bottom: 18px;
}


/* =========================================================
   MAIN CARD HEADING
========================================================= */

#about .about-main-card h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    max-width: 760px;
    font-size: clamp(28px, 2.25vw, 38px);
    line-height: 1.12;
    letter-spacing: -1.5px;
    font-weight: 800;
    color: #f5f5f5;
}

#about .about-main-card h2 span {
    color: #ff6b00;
}


/* =========================================================
   MAIN CARD TEXT
========================================================= */

#about .about-main-card > p {
    position: relative;
    z-index: 2;
    color: #c0c0c4;
    font-size: 13px;
    line-height: 2.3;
    margin: 0 0 22px;
    max-width: 850px;
}


/* =========================================================
   FEATURES
========================================================= */

#about .about-features {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

#about .about-feature {
    display: flex;
    align-items: center;
    min-height: 43px;
    padding: 0 14px;
    background: #071126;
    border-radius: 10px;
    color: #f2f2f2;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.015);
    transition: .25s ease;
}

#about .about-feature span {
    color: #ff6b00;
    font-size: 13px;
    margin-right: 12px;
}

#about .about-feature:hover {
    background: #0a1730;
    transform: translateX(4px);
}


/* =========================================================
   DIVIDER
========================================================= */

#about .about-main-card hr {
    position: relative;
    z-index: 2;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.10);
    margin: 25px 0 !important;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

#about .about-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    min-height: 0;
    height: auto;
}


/* =========================================================
   MINI CARDS
========================================================= */

#about .about-mini-card {
    position: relative;
    min-height: 0;
    height: auto;
    padding: 24px 24px;
    background: rgba(10, 11, 17, .92);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0,0,0,.28);
    flex: 1;
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


/* No separate orange glow inside mini cards */


/* =========================================================
   LABEL
========================================================= */

#about .about-mini-card > small {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 12px;
    color: #ff6b00;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .3px;
}


/* =========================================================
   MINI CARD HEADING
========================================================= */

#about .about-mini-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #f5f5f5;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -.4px;
}


/* =========================================================
   MINI CARD TEXT
========================================================= */

#about .about-mini-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #c1c1c5;
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   STATS
========================================================= */

#about .stats-row {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

#about .stat-box {
    min-height: 73px;
    padding: 12px 14px;
    background: #ffffff;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#about .stat-box h4 {
    margin: 0 0 4px;
    color: #ff6b00;
    font-size: 23px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.5px;
}

#about .stat-box small {
    color: #777;
    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   HOVER
========================================================= */

#about .about-main-card:hover,
#about .about-mini-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,107,0,.28);
    box-shadow:
        0 28px 70px rgba(0,0,0,.45),
        0 0 35px rgba(255,107,0,.04);
}


/* =========================================================
   DOT ANIMATION
========================================================= */

@keyframes aboutDotsMove {

    0% {
        background-position:
            0 0,
            0 0,
            0 0,
            0 0,
            0 0,
            0 0,
            0 0,
            0 0;
    }

    50% {
        background-position:
            100px -80px,
            -120px 90px,
            140px -100px,
            -100px 120px,
            90px -70px,
            -140px 100px,
            130px -110px,
            -170px 130px;
    }

    100% {
        background-position:
            200px -160px,
            -240px 180px,
            280px -200px,
            -200px 240px,
            180px -140px,
            -280px 200px,
            260px -220px,
            -340px 260px;
    }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    #about {
        padding: 90px 0 70px !important;
    }

    #about .about-grid {
        width: 92%;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #about .about-main-card {
        min-height: auto;
    }

    #about .about-side {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }

    #about .about-side .about-mini-card:last-child {
        grid-column: 1 / -1;
    }
}


@media (max-width: 600px) {

    #about {
        padding: 80px 0 60px !important;
    }

    #about .section-heading {
        font-size: 44px;
        letter-spacing: -2px;
    }

    #about .section-subtitle {
        width: 88%;
        margin: 20px auto 38px !important;
        font-size: 13px;
    }

    #about .about-grid {
        width: 92%;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #about .about-main-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    #about .about-main-card h2 {
        font-size: 27px;
    }

    #about .about-feature {
        font-size: 11px;
        min-height: 42px;
    }

    #about .about-side {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    #about .about-mini-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    #about .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    #about::after {
        opacity: .42;
    }
}
/* =========================================================
   FAQ SECTION — FINAL PREMIUM VERSION
========================================================= */

#faq {
    position: relative;
    width: 100%;
    padding: 115px 0 95px !important;

    background: transparent !important;

    overflow: hidden !important;
    isolation: isolate;
}


/* =========================================================
   MOVING ORANGE DOTS
========================================================= */

#faq::after {
    content: "";

    position: absolute;
    inset: -180px;

    pointer-events: none;
    z-index: 0;

    background-image:

        radial-gradient(
            circle at 8% 18%,
            rgba(255,101,0,.70) 0 2px,
            transparent 3px
        ),

        radial-gradient(
            circle at 24% 72%,
            rgba(255,170,50,.58) 0 1.5px,
            transparent 2.5px
        ),

        radial-gradient(
            circle at 42% 32%,
            rgba(255,101,0,.60) 0 2px,
            transparent 3px
        ),

        radial-gradient(
            circle at 61% 82%,
            rgba(255,190,80,.50) 0 1.5px,
            transparent 2.5px
        ),

        radial-gradient(
            circle at 78% 22%,
            rgba(255,101,0,.65) 0 2px,
            transparent 3px
        ),

        radial-gradient(
            circle at 91% 66%,
            rgba(255,170,50,.52) 0 1.5px,
            transparent 2.5px
        ),

        radial-gradient(
            circle at 16% 48%,
            rgba(255,101,0,.52) 0 1.8px,
            transparent 3px
        ),

        radial-gradient(
            circle at 70% 52%,
            rgba(255,190,80,.45) 0 1.4px,
            transparent 2.5px
        );

    background-size:
        260px 260px,
        340px 340px,
        430px 430px,
        520px 520px,
        310px 310px,
        470px 470px,
        590px 590px,
        680px 680px;

    opacity: .48;

    animation: faqDotsMove 17s linear infinite;
}


/* =========================================================
   SUBTLE ORANGE AMBIENT LIGHT
========================================================= */

#faq::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: -320px;
    top: 50px;

    border-radius: 50%;

    background: rgba(255,101,0,.065);

    filter: blur(140px);

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   CONTENT ABOVE BACKGROUND
========================================================= */

#faq > * {
    position: relative;
    z-index: 2;
}


/* =========================================================
   FAQ HEADING
========================================================= */

#faq .section-heading {
    position: relative;
    z-index: 3;

    margin: 0 auto 18px !important;
    padding: 0;

    text-align: center;

    color: #ffffff;

    font-size: clamp(48px, 5vw, 72px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -3px;
}


#faq .section-heading span {
    color: #ff6b00;
}


/* =========================================================
   SUBTITLE
========================================================= */

#faq .section-subtitle {
    position: relative;
    z-index: 3;

    max-width: 650px;

    margin: 0 auto 50px !important;

    text-align: center;

    color: #a5a5aa;

    font-size: 14px;

    line-height: 1.7;

    font-weight: 400;
}


/* =========================================================
   FAQ GRID
========================================================= */

#faq .faq-grid {
    position: relative;
    z-index: 3;

    width: 92%;
    max-width: 1420px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

#faq .faq-item {
    position: relative;

    min-width: 0;

    background:
        linear-gradient(
            145deg,
            rgba(14,15,22,.96),
            rgba(8,9,14,.95)
        );

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 18px 50px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.025);

    transition:
        border-color .30s ease,
        box-shadow .30s ease,
        transform .30s ease;
}


/* =========================================================
   HOVER
========================================================= */

#faq .faq-item:hover {
    border-color: rgba(255,107,0,.28);

    box-shadow:
        0 24px 60px rgba(0,0,0,.40),
        0 0 28px rgba(255,107,0,.035);

    transform: translateY(-2px);
}


/* =========================================================
   ACTIVE FAQ
========================================================= */

#faq .faq-item.active {
    border-color: rgba(255,107,0,.55);

    box-shadow:
        0 24px 65px rgba(0,0,0,.45),
        0 0 35px rgba(255,107,0,.055);
}


/* =========================================================
   FAQ QUESTION
========================================================= */

#faq .faq-question {
    width: 100%;

    min-height: 64px;

    padding: 18px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: 0;

    outline: none;

    background: transparent;

    color: #f5f5f5;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.4;

    text-align: left;

    cursor: pointer;
}


/* =========================================================
   FAQ ICON
========================================================= */

#faq .faq-question span {
    flex-shrink: 0;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ff6b00;

    background: transparent;

    font-size: 22px;

    font-weight: 500;

    line-height: 1;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


/* Hover icon */

#faq .faq-item:hover .faq-question span {
    background: rgba(255,107,0,.09);
}


/* Active icon */

#faq .faq-item.active .faq-question span {
    color: #ff6b00;

    background: rgba(255,107,0,.10);
}


/* =========================================================
   FAQ ANSWER
   IMPORTANT:
   CLOSED BY DEFAULT
========================================================= */

#faq .faq-answer {
    display: none;

    padding: 0 20px 23px;

    color: #bdbdc2;

    font-size: 12px;

    line-height: 1.75;

    font-weight: 400;
}


/* ONLY ACTIVE FAQ SHOWS ANSWER */

#faq .faq-item.active .faq-answer {
    display: block;
}


/* =========================================================
   CONTACT LINKS
========================================================= */

#faq .contact-link {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 12px;

    color: #c7c7cb;

    font-size: 12px;
}

#faq .contact-link:last-child {
    margin-bottom: 0;
}


#faq .contact-link a {
    color: #6d9bd3;

    text-decoration: none;

    transition: color .25s ease;
}


#faq .contact-link a:hover {
    color: #ff6b00;
}


/* =========================================================
   LINKEDIN ICON
========================================================= */

#faq .social-icon {
    width: 15px !important;
    height: 15px !important;

    object-fit: contain;

    border-radius: 2px;
}


/* =========================================================
   FOUNDERS GRID
========================================================= */

#faq .founders-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    margin-top: 3px;
}


/* =========================================================
   FOUNDER CARD
========================================================= */

#faq .founder-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    padding: 0;

    background: transparent;

    border: 0;
}


/* =========================================================
   FOUNDER IMAGE
========================================================= */

#faq .founder-card img {
    display: block;
    width: 100%;
    height: 260px;

    object-fit: contain;
    object-position: center top;

    background: #0b0b0b;
    border-radius: 16px;
}


/* =========================================================
   FOUNDER NAME
========================================================= */

#faq .founder-card h3 {
    margin: 0 0 4px;

    color: #f5f5f5;

    font-size: 12px;

    line-height: 1.3;

    font-weight: 800;

    letter-spacing: -.2px;
}


/* =========================================================
   FOUNDER ROLE
========================================================= */

#faq .founder-card small {
    display: block;

    margin-bottom: 9px;

    color: #88888e;

    font-size: 8px;

    line-height: 1.3;

    font-weight: 500;
}


/* =========================================================
   FOUNDER DESCRIPTION
========================================================= */

#faq .founder-card p {
    margin: 0 0 10px;

    color: #aaaab0;

    font-size: 8px;

    line-height: 1.55;
}


/* =========================================================
   FOUNDER LINK
========================================================= */

#faq .founder-card > a {
    margin-top: auto;

    color: #ff6b00;

    font-size: 8px;

    font-weight: 700;

    text-decoration: none;

    transition: color .25s ease;
}


#faq .founder-card > a:hover {
    color: #ff8a3d;
}


/* =========================================================
   DOT ANIMATION
========================================================= */

@keyframes faqDotsMove {

    0% {
        background-position:
            0 0,
            0 0,
            0 0,
            0 0,
            0 0,
            0 0,
            0 0,
            0 0;
    }

    50% {
        background-position:
            100px -80px,
            -120px 90px,
            140px -100px,
            -100px 120px,
            90px -70px,
            -140px 100px,
            130px -110px,
            -170px 130px;
    }

    100% {
        background-position:
            200px -160px,
            -240px 180px,
            280px -200px,
            -200px 240px,
            180px -140px,
            -280px 200px,
            260px -220px,
            -340px 260px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    #faq {
        padding: 90px 0 80px !important;
    }

    #faq .faq-grid {
        width: 92%;
        gap: 14px;
    }

    #faq .founders-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 9px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    #faq {
        padding: 80px 0 65px !important;
    }

    #faq .section-heading {
        font-size: 44px;
        letter-spacing: -2px;
    }

    #faq .section-subtitle {
        width: 88%;
        margin-bottom: 36px !important;
        font-size: 13px;
    }

    #faq .faq-grid {
        width: 92%;

        grid-template-columns: 1fr;

        gap: 13px;
    }

    #faq .faq-question {
        min-height: 60px;

        padding: 17px 18px;

        font-size: 12px;
    }

    #faq .faq-answer {
        padding: 0 18px 20px;

        font-size: 11px;

        line-height: 1.7;
    }

    #faq .founders-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 7px;
    }

    #faq .founder-card h3 {
        font-size: 9px;
    }

    #faq .founder-card small {
        font-size: 7px;
    }

    #faq .founder-card p {
        font-size: 7px;

        line-height: 1.5;
    }

    #faq .founder-card > a {
        font-size: 7px;
    }

    #faq::after {
        opacity: .40;
    }
}
/* =========================================================
   FAQ FOUNDER CARDS — FINAL SIZE FIX
========================================================= */

/* Founder image */
#faq .founder-card img {
    width: 100%;
    height: 235px;

    aspect-ratio: auto !important;

    object-fit: cover;

    /* Head safe, bottom crop */
    object-position: center top;

    border-radius: 14px;

    margin-bottom: 13px;
}


/* Founder name */
#faq .founder-card h3 {
    font-size: 14px !important;
    line-height: 1.3 !important;

    margin: 0 0 5px !important;
}


/* Founder role */
#faq .founder-card small {
    font-size: 10px !important;
    line-height: 1.35 !important;

    margin-bottom: 11px !important;
}


/* Founder details */
#faq .founder-card p {
    font-size: 10.5px !important;
    line-height: 1.6 !important;

    margin: 0 0 12px !important;

    color: #b8b8bd !important;
}


/* LinkedIn */
#faq .founder-card > a {
    font-size: 10px !important;
}


/* Mobile */
@media (max-width: 700px) {

    #faq .founder-card img {
        height: 190px;
    }

    #faq .founder-card h3 {
        font-size: 12px !important;
    }

    #faq .founder-card small {
        font-size: 9px !important;
    }

    #faq .founder-card p {
        font-size: 9px !important;
        line-height: 1.55 !important;
    }

    #faq .founder-card > a {
        font-size: 9px !important;
    }
}
.header-brand-area {
    display: flex;
    align-items: center;
    transform: translateX(-15px);
}

.company-main-logo {
    width: 230px;
    height: auto;
    display: block;
    object-fit: contain;
}
/* Remove Culture section moving dots */
#culture::after {
    display: none !important;
    content: none !important;
}
/* =========================================================
   JOBS — PREMIUM OPEN POSITIONS
========================================================= */

#jobs.jobs-section {
    position: relative;

    width: 100%;

    min-height: auto;

    padding: 145px 0 125px;

    background: transparent !important;

    overflow: hidden;

    isolation: isolate;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

#jobs.jobs-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -300px;
    top: 0;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,101,0,.08),
            transparent 68%
        );

    filter: blur(60px);

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   CONTENT
========================================================= */

.jobs-container {
    position: relative;

    z-index: 5;

    width: min(
        calc(100% - 100px),
        1240px
    );

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.jobs-header {
    display: block;

    justify-content: space-between;

    align-items: flex-end;

    gap: 60px;

    margin-bottom: 65px;
}


.jobs-label {
    display: flex;

    align-items: center;

    gap: 14px;

    color: #777;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

    white-space: nowrap;
}


.jobs-label span {
    color: #ff6500;

    font-size: 12px;
}


/* =========================================================
   HEADING
========================================================= */

.jobs-heading-wrap {
    max-width: 850px;

    margin-left: auto;
}


.jobs-heading-wrap h2 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(
            58px,
            7vw,
            100px
        );

    line-height: .9;

    letter-spacing: -5px;

    font-weight: 900;
}


.jobs-heading-wrap h2 span {
    color: #ff6500;

    display: block;
}


.jobs-heading-wrap p {
    max-width: 500px;

    margin-top: 25px;

    color: #777;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   MAIN JOB CARD
========================================================= */

.jobs-card {
    position: relative;

    display: grid;

    grid-template-columns:
        1.5fr
        .9fr
        auto;

    align-items: center;

    min-height: 220px;

    padding: 35px 38px;

    background:
        linear-gradient(
            145deg,
            rgba(19,19,19,.95),
            rgba(8,8,8,.97)
        );

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.035);

    transition:
        border-color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}


.jobs-card::before {
    content: "";

    position: absolute;

    left: 25px;
    right: 25px;
    top: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,101,0,.75),
            transparent
        );
}


.jobs-card:hover {
    border-color:
        rgba(255,101,0,.45);

    transform:
        translateY(-4px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        0 0 40px rgba(255,101,0,.05);
}


/* =========================================================
   LEFT SIDE
========================================================= */

.job-card-left {
    display: flex;

    align-items: flex-start;

    gap: 28px;
}


.job-number {
    color:
        rgba(255,101,0,.25);

    font-size: 50px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -3px;
}


.job-main {
    padding-top: 3px;
}


.job-status {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 13px;

    color: #777;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.job-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ff6500;

    box-shadow:
        0 0 10px
        rgba(255,101,0,.7);

    animation:
        jobPulse 2s ease-in-out infinite;
}


@keyframes jobPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(.7);
    }

}


.job-main h3 {
    margin: 0;

    color: #fff;

    font-size: 27px;

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -.7px;
}


.job-main p {
    max-width: 470px;

    margin-top: 13px;

    color: #777;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   MIDDLE META
========================================================= */

.job-card-middle {
    display: grid;

    grid-template-columns: 1fr;

    gap: 19px;

    padding:
        5px 35px;

    border-left:
        1px solid rgba(255,255,255,.08);
}


.job-meta {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.job-meta span {
    color: #555;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.job-meta strong {
    color: #d8d8d8;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   ACTION
========================================================= */

.job-card-action {
    padding-left: 25px;
}


.job-view-button {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding:
        15px 18px;

    color: #fff;

    background: #ff6500;

    border: 1px solid #ff6500;

    border-radius: 10px;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.job-view-button span {
    font-size: 17px;

    line-height: 1;
}


.job-view-button:hover {
    background: #c94700;

    border-color: #c94700;

    color: #fff;

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 30px
        rgba(255,101,0,.22);
}


/* =========================================================
   BOTTOM
========================================================= */

.jobs-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 28px;

    padding:
        0 5px;
}


.jobs-bottom span {
    color: #444;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.jobs-bottom p {
    color: #666;

    font-size: 11px;
}


/* =========================================================
   JOBS MOBILE
========================================================= */

@media (max-width: 850px) {

    #jobs.jobs-section {
        padding:
            100px 0 90px;
    }

    .jobs-container {
        width:
            calc(100% - 40px);
    }

    .jobs-header {
        display: block;

        margin-bottom: 45px;
    }


    .jobs-heading-wrap {
        margin-top: 30px;
    }

    .jobs-heading-wrap h2 {
        font-size: 58px;

        letter-spacing: -3px;
    }

    .jobs-card {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 30px;
    }

    .job-card-middle {
        grid-template-columns:
            repeat(3, 1fr);

        padding:
            22px 0 0;

        border-left: 0;

        border-top:
            1px solid rgba(255,255,255,.08);
    }

    .job-card-action {
        padding-left: 0;
    }

    .job-view-button {
        width: 100%;

        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    #jobs.jobs-section {
        padding:
            80px 0 70px;
    }

    .jobs-container {
        width:
            calc(100% - 30px);
    }

    .jobs-heading-wrap h2 {
        font-size: 46px;

        letter-spacing: -2.5px;
    }

    .jobs-heading-wrap p {
        font-size: 13px;
    }

    .jobs-card {
        padding: 24px;

        border-radius: 19px;
    }

    .job-card-left {
        gap: 17px;
    }

    .job-number {
        font-size: 35px;
    }

    .job-main h3 {
        font-size: 22px;
    }

    .job-card-middle {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .jobs-bottom {
        display: block;
    }

    .jobs-bottom p {
        margin-top: 8px;
    }

}
/* =========================================================
   PREMIUM FOOTER
========================================================= */

.footer {
    position: relative;

    width: 100%;

    padding:
        95px 0 25px;

    background:
        #030303 !important;

    border-top:
        1px solid rgba(255,255,255,.08);

    overflow: hidden;

    isolation: isolate;
}


/* =========================================================
   ORANGE AMBIENT GLOW
========================================================= */

.footer::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    bottom: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,101,0,.10),
            transparent 68%
        );

    filter: blur(70px);

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   FOOTER CONTENT
========================================================= */

.footer-container {
    position: relative;

    z-index: 5;

    width:
        min(
            calc(100% - 100px),
            1240px
        );

    margin: 0 auto;
}


/* =========================================================
   FOOTER TOP
========================================================= */

.footer-top {
    display: grid;

    grid-template-columns:
        2.1fr
        1fr
        1fr
        1fr;

    gap: 60px;

    padding-bottom: 80px;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    max-width: 330px;
}


.footer-logo img {
    display: block;

    width: 155px;

    height: auto;

    object-fit: contain;
}


.footer-brand p {
    max-width: 280px;

    margin-top: 22px;

    color: #686868;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 13px;
}


.footer-column-title {
    margin-bottom: 7px;

    color: #444;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.footer-column a {
    position: relative;

    color: #8a8a8a;

    font-size: 11px;

    font-weight: 500;

    transition:
        color .25s ease,
        transform .25s ease;
}


.footer-column a:hover {
    color: #ff6500;

    transform:
        translateX(4px);
}


.footer-column a span {
    margin-left: 5px;

    color: #ff6500;
}


/* =========================================================
   HUGE BRAND WORD
========================================================= */

.footer-word {
    margin-left: -7px;

    color: transparent;

    font-size:
        clamp(
            65px,
            13vw,
            175px
        );

    line-height: .78;

    font-weight: 900;

    letter-spacing:
        -9px;

    white-space: nowrap;

    -webkit-text-stroke:
        1px rgba(255,255,255,.08);

    user-select: none;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 55px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255,255,255,.08);

    color: #444;

    font-size: 9px;

    letter-spacing: .5px;
}


.footer-bottom span:last-child {
    color: #555;

    letter-spacing: 1.8px;

    font-weight: 700;
}


/* =========================================================
   FOOTER MOBILE
========================================================= */

@media (max-width: 800px) {

    .footer {
        padding:
            75px 0 22px;
    }

    .footer-container {
        width:
            calc(100% - 40px);
    }

    .footer-top {
        grid-template-columns:
            1fr 1fr;

        gap: 45px 30px;

        padding-bottom: 55px;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }

    .footer-word {
        font-size: 14vw;

        letter-spacing:
            -4px;
    }

    .footer-bottom {
        margin-top: 35px;

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }

}


@media (max-width: 500px) {

    .footer-top {
        grid-template-columns:
            1fr 1fr;
    }

    .footer-logo img {
        width: 135px;
    }

    .footer-brand p {
        font-size: 11px;
    }

    .footer-word {
        font-size: 13vw;

        letter-spacing:
            -2px;
    }

}
/* =========================================================
   JOBS — SAME MOVING DOT BACKGROUND
========================================================= */

#jobs.jobs-section {
    position: relative;
    overflow: hidden;
}

#jobs.jobs-section::after {
    content: "";

    position: absolute;

    inset: -120px;

    pointer-events: none;

    z-index: 1;

    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,101,0,.55) 0 2px, transparent 3px),
        radial-gradient(circle at 30% 75%, rgba(255,170,50,.42) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 55% 30%, rgba(255,101,0,.48) 0 2px, transparent 3px),
        radial-gradient(circle at 75% 80%, rgba(255,190,80,.38) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 92% 25%, rgba(255,101,0,.52) 0 2px, transparent 3px);

    background-size:
        430px 430px,
        520px 520px,
        610px 610px,
        470px 470px,
        650px 650px;

    opacity: .35;

    animation:
        globalDotsMove 20s linear infinite;
}

#jobs.jobs-section > .jobs-container {
    position: relative;
    z-index: 5;
}
/* =========================================================
   JOBS — OPEN POSITIONS
========================================================= */

.jobs-section {
    position: relative;

    padding:
        145px 0 125px;

    background:
        #050505 !important;

    overflow: hidden;

    isolation: isolate;
}


.jobs-container {
    position: relative;

    z-index: 5;

    width:
        calc(100% - 100px);

    max-width:
        1240px;

    margin:
        0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.jobs-header {
    display: grid;

    grid-template-columns:
        220px 1fr;

    gap: 70px;

    align-items: start;

    margin-bottom: 70px;
}


.jobs-label {
    display: flex;

    align-items: center;

    gap: 14px;

    padding-top: 12px;

    color: #666;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.jobs-label span {
    color: #ff6500;

    font-size: 12px;
}


.jobs-intro {
    max-width: 850px;
    margin: 0 auto;
}


.jobs-intro h2 {
    margin: 0;

    font-size: clamp(60px, 7vw, 100px);
    line-height: .88;

    letter-spacing: -5px;
    font-weight: 900;

    color: #fff;
}


.jobs-intro h2 span {
    display: block;
    color: #ff6500;
}

.jobs-intro p {
    max-width: 560px;
    margin: 28px auto 0;

    color: #777;

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   JOB LIST
========================================================= */

.jobs-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   JOB CARD
========================================================= */

.job-card {
    position: relative;

    display: grid;

    grid-template-columns:
        55px
        minmax(350px, 1.7fr)
        .65fr
        .65fr
        .75fr
        60px;

    align-items: center;

    gap: 25px;

    min-height: 180px;

    padding:
        30px 28px;

    background:
        rgba(12,12,12,.9);

    border:
        1px solid #1c1c1c;

    border-radius:
        18px;

    transition:
        border-color .35s ease,
        transform .35s ease,
        background .35s ease;
}


.job-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(255,101,0,.45);

    background:
        rgba(17,17,17,.98);
}


/* orange top line */

.job-card::before {
    content: "";

    position: absolute;

    top: -1px;

    left: 35px;

    width: 70px;

    height: 2px;

    background:
        #ff6500;

    opacity: .75;
}


/* =========================================================
   INDEX
========================================================= */

.job-index {
    align-self: start;

    padding-top: 5px;

    color:
        rgba(255,101,0,.35);

    font-size: 28px;

    font-weight: 900;

    letter-spacing: -2px;
}


/* =========================================================
   JOB INFO
========================================================= */

.job-info {
    min-width: 0;
}


.job-status {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 10px;

    color: #666;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.job-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        #ff6500;

    box-shadow:
        0 0 10px
        rgba(255,101,0,.7);

    animation:
        jobPulse 2s ease-in-out infinite;
}


@keyframes jobPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }

}


.job-info h3 {
    margin: 0;

    color: #fff;

    font-size: 25px;

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -.7px;
}


.job-info p {
    max-width: 500px;

    margin-top: 11px;

    color: #666;

    font-size: 11px;

    line-height: 1.65;
}


/* =========================================================
   DETAILS
========================================================= */

.job-details {
    display: flex;

    flex-direction: column;

    gap: 7px;

    padding-left: 22px;

    border-left:
        1px solid #202020;
}


.job-details span {
    color: #444;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.job-details strong {
    color: #aaa;

    font-size: 10px;

    font-weight: 600;
}


/* =========================================================
   ARROW
========================================================= */

.job-arrow {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;
    height: 42px;

    color: #fff;

    border:
        1px solid #303030;

    border-radius: 50%;

    font-size: 17px;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.job-arrow:hover {
    color: #fff;

    background:
        #ff6500;

    border-color:
        #ff6500;

    transform:
        rotate(45deg);
}


/* =========================================================
   FOOT NOTE
========================================================= */

.jobs-footer-note {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 32px;

    padding:
        0 5px;
}


.jobs-footer-note span {
    color: #444;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


.jobs-footer-note p {
    color: #555;

    font-size: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 950px) {

    .jobs-header {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .job-card {
        grid-template-columns:
            45px
            1fr
            50px;
    }


    .job-details {
        display: none;
    }


    .job-arrow {
        grid-column: 3;

        grid-row: 1 / span 2;
    }

}


@media (max-width: 600px) {

    .jobs-section {
        padding:
            90px 0 85px;
    }


    .jobs-container {
        width:
            calc(100% - 30px);
    }


    .jobs-header {
        margin-bottom: 45px;
    }


    .jobs-intro h2 {
        font-size: 52px;

        letter-spacing: -3px;
    }


    .jobs-intro p {
        font-size: 13px;
    }


    .job-card {
        grid-template-columns:
            35px
            1fr
            40px;

        gap: 15px;

        min-height: 165px;

        padding:
            25px 20px;
    }


    .job-index {
        font-size: 22px;
    }


    .job-info h3 {
        font-size: 20px;
    }


    .job-info p {
        font-size: 10px;
    }


    .job-arrow {
        width: 38px;
        height: 38px;
    }


    .jobs-footer-note {
        display: block;
    }


    .jobs-footer-note p {
        margin-top: 8px;
    }

}
.footer .logo-text {
    color: #ff6500 !important;
}
.footer-brand p {
    color: #777 !important;
}
.footer-bottom {
    color: #555 !important;
}
/* =========================================================
   FINAL JOBS + FOOTER FIX
========================================================= */

/* ---------------------------------------------------------
   JOBS HEADER
   jobs-label removed — no empty left column
--------------------------------------------------------- */

#jobs .jobs-header {
    display: block !important;

    width: 100% !important;
    margin: 0 0 70px !important;
    padding: 0 !important;
}

#jobs .jobs-intro {
    width: 100% !important;
    max-width: 900px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    text-align: left !important;
}

#jobs .jobs-intro h2 {
    margin: 0 !important;
    padding: 0 !important;

    font-size: clamp(58px, 7vw, 100px) !important;
    line-height: .88 !important;
    letter-spacing: -5px !important;
    font-weight: 900 !important;

    color: #fff !important;
}

#jobs .jobs-intro h2 span {
    display: block !important;
    color: #ff6500 !important;
}

#jobs .jobs-intro p {
    max-width: 560px !important;

    margin: 28px 0 0 !important;
    padding: 0 !important;

    color: #777 !important;

    font-size: 14px !important;
    line-height: 1.75 !important;
}


/* ---------------------------------------------------------
   JOB LIST
--------------------------------------------------------- */

#jobs .jobs-list {
    width: 100% !important;
    margin: 0 !important;
}


/* ---------------------------------------------------------
   JOB CARD NUMBER
   Keep 01 aligned properly inside card
--------------------------------------------------------- */

#jobs .job-card {
    position: relative !important;
}

#jobs .job-index {
    position: relative !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #ff6500 !important;

    font-weight: 800 !important;
}


/* ---------------------------------------------------------
   FOOTER LOGO
   Actual footer logo is an IMAGE, not .logo-text
--------------------------------------------------------- */

.footer .footer-logo img {
    display: block !important;

    width: 155px !important;
    height: auto !important;

    /* Convert logo into Confinality orange */
    filter:
        brightness(0)
        saturate(100%)
        invert(44%)
        sepia(99%)
        saturate(3590%)
        hue-rotate(359deg)
        brightness(102%)
        contrast(103%) !important;

    opacity: 1 !important;
}


/* ---------------------------------------------------------
   FOOTER BRAND TEXT
--------------------------------------------------------- */

.footer .footer-brand p {
    color: #777 !important;
}


/* ---------------------------------------------------------
   FOOTER LARGE CONFINALITY WORD
   Orange outline instead of grey
--------------------------------------------------------- */

.footer .footer-word {
    color: transparent !important;

    -webkit-text-stroke:
        1.5px rgba(255,101,0,.65) !important;

    text-shadow:
        0 0 30px rgba(255,101,0,.08) !important;
}


/* ---------------------------------------------------------
   FOOTER BOTTOM
--------------------------------------------------------- */

.footer .footer-bottom {
    color: #555 !important;

    border-top:
        1px solid rgba(255,101,0,.15) !important;
}

.footer .footer-bottom span:last-child {
    color: #ff6500 !important;
}


/* ---------------------------------------------------------
   FOOTER LINKS
--------------------------------------------------------- */

.footer .footer-column a:hover {
    color: #ff6500 !important;
}

.footer .footer-column a span {
    color: #ff6500 !important;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 600px) {

    #jobs .jobs-header {
        display: block !important;
        margin-bottom: 45px !important;
    }

    #jobs .jobs-intro {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    #jobs .jobs-intro h2 {
        font-size: 52px !important;
        letter-spacing: -3px !important;
    }

    #jobs .jobs-intro p {
        font-size: 13px !important;
        margin-top: 22px !important;
    }

    .footer .footer-logo img {
        width: 135px !important;
    }

}
/* =========================================================
   FINAL JOBS + FOOTER ALIGNMENT FIX
========================================================= */

/* ---------------------------------------------------------
   REMOVE JOBS HORIZONTAL SCROLLER
--------------------------------------------------------- */

#jobs,
#jobs.jobs-section {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

#jobs .jobs-container {
    width: calc(100% - 100px) !important;
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
}

#jobs .jobs-list {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}


/* ---------------------------------------------------------
   JOBS HEADING — CENTER
--------------------------------------------------------- */

#jobs .jobs-header {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

#jobs .jobs-intro {
    width: 100% !important;
    max-width: 950px !important;
    margin: 80px auto !important;
    text-align: center !important;
}

#jobs .jobs-intro h2 {
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
}

#jobs .jobs-intro h2 span {
    text-align: center !important;
}

#jobs .jobs-intro p {
    margin: 10px auto 0 !important;
    text-align: center !important;
}


/* ---------------------------------------------------------
   FOOTER — BIG CONFINALITY TEXT CENTER
--------------------------------------------------------- */

.footer .footer-word {
    width: 100% !important;
    margin-left: 0 !important;
    text-align: center !important;

    color: transparent !important;

    -webkit-text-stroke:
        1.5px rgba(255,101,0,.65) !important;
}
/* =========================================================
   JOBS — BALANCED SPACING
========================================================= */

#jobs.jobs-section {
    padding: 95px 0 90px !important;
}

#jobs .jobs-header {
    margin-bottom: 45px !important;
}

#jobs .jobs-intro {
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 950px !important;
}

#jobs .jobs-intro h2 {
    font-size: 64px !important;
    line-height: .95 !important;
    letter-spacing: -3.5px !important;
    margin: 0 auto !important;
}

#jobs .jobs-intro p {
    margin: 16px auto 0 !important;
    line-height: 1.6 !important;
}

#jobs .jobs-list {
    margin-top: 0 !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1201px) {

    #jobs.jobs-section {
        padding: 100px 0 90px !important;
    }

    #jobs .jobs-header {
        margin-bottom: 45px !important;
    }

    #jobs .jobs-intro {
        margin: 0 auto !important;
    }

    #jobs .jobs-intro h2 {
        font-size: 64px !important;
    }

    #jobs .jobs-intro p {
        margin-top: 16px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    #jobs.jobs-section {
        padding: 70px 0 65px !important;
    }

    #jobs .jobs-header {
        margin-bottom: 35px !important;
    }

    #jobs .jobs-intro {
        margin: 0 auto !important;
    }

    #jobs .jobs-intro h2 {
        font-size: 46px !important;
        line-height: .98 !important;
        letter-spacing: -2px !important;
    }

    #jobs .jobs-intro p {
        margin-top: 12px !important;
        font-size: 13px !important;
    }
}

/* =========================================================
   FINAL DOT MOVEMENT FIX — JOBS + CULTURE
   Faster + larger travel distance + always visible
========================================================= */

/* JOBS — make dots move noticeably faster and farther */
#jobs.jobs-section::after {
    content: "" !important;
    position: absolute !important;
    inset: -180px !important;

    background-image:
        radial-gradient(circle, rgba(255,101,0,.72) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255,170,50,.58) 0 1.5px, transparent 2.5px),
        radial-gradient(circle, rgba(255,101,0,.62) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255,200,80,.50) 0 1.5px, transparent 2.5px);

    background-size:
        300px 300px,
        390px 390px,
        500px 500px,
        610px 610px;

    background-position:
        0 0,
        100px 80px,
        -80px 150px,
        180px -50px;

    background-repeat: repeat;

    opacity: .58 !important;

    animation:
        jobsDotsFast
        9s
        linear
        infinite !important;

    pointer-events: none !important;
    z-index: 1 !important;
}

#jobs.jobs-section > .jobs-container {
    position: relative !important;
    z-index: 5 !important;
}

@keyframes jobsDotsFast {
    0% {
        background-position:
            0 0,
            100px 80px,
            -80px 150px,
            180px -50px;
    }

    50% {
        background-position:
            300px -220px,
            -240px 300px,
            360px -180px,
            -300px 250px;
    }

    100% {
        background-position:
            600px -440px,
            -480px 520px,
            720px -360px,
            -600px 550px;
    }
}


/* CULTURE — restore moving dots that were previously disabled */
#culture {
    position: relative !important;
    overflow: hidden !important;
}

#culture::after {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    inset: -180px !important;

    background-image:
        radial-gradient(circle, rgba(255,101,0,.70) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255,170,50,.55) 0 1.5px, transparent 2.5px),
        radial-gradient(circle, rgba(255,101,0,.58) 0 2px, transparent 3px),
        radial-gradient(circle, rgba(255,205,80,.48) 0 1.5px, transparent 2.5px);

    background-size:
        290px 290px,
        390px 390px,
        510px 510px,
        630px 630px;

    background-position:
        0 0,
        100px 80px,
        -80px 150px,
        180px -50px;

    background-repeat: repeat;

    opacity: .52 !important;

    animation:
        cultureDotsFast
        10s
        linear
        infinite !important;

    pointer-events: none !important;
    z-index: 1 !important;
}

#culture > * {
    position: relative;
    z-index: 3 !important;
}

@keyframes cultureDotsFast {
    0% {
        background-position:
            0 0,
            100px 80px,
            -80px 150px,
            180px -50px;
    }

    50% {
        background-position:
            -280px 230px,
            260px -260px,
            -360px 180px,
            300px -220px;
    }

    100% {
        background-position:
            -560px 460px,
            520px -520px,
            -720px 360px,
            600px -440px;
    }
}


/* Keep dots slightly softer on mobile, but still clearly moving */
@media (max-width: 700px) {

    #jobs.jobs-section::after,
    #culture::after {
        opacity: .38 !important;
        animation-duration: 12s !important;
    }

}
/* =========================================================
   PREMIUM BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed !important;
    right: 28px !important;
    bottom: 28px !important;

    width: 54px !important;
    height: 54px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    border: 1px solid rgba(255, 101, 0, .7) !important;
    border-radius: 50% !important;

    background: rgba(8, 8, 8, .88) !important;
    color: #ff6500 !important;

    font-family: inherit !important;
    font-size: 25px !important;
    font-weight: 700 !important;

    cursor: pointer !important;

    opacity: 0 !important;
    visibility: hidden !important;

    transform:
        translateY(20px)
        scale(.75) !important;

    transition:
        opacity .35s ease,
        visibility .35s ease,
        transform .35s ease,
        background .3s ease,
        color .3s ease,
        box-shadow .3s ease !important;

    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;

    box-shadow:
        0 0 15px rgba(255, 101, 0, .15),
        inset 0 0 15px rgba(255, 101, 0, .04) !important;

    z-index: 99999 !important;
}

.back-to-top span {
    display: block;
    transform: translateY(-2px);
}

.back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;

    transform:
        translateY(0)
        scale(1) !important;
}

.back-to-top:hover {
    background: #ff6500 !important;
    color: #ffffff !important;

    transform:
        translateY(-5px)
        scale(1.08) !important;

    box-shadow:
        0 0 25px rgba(255, 101, 0, .5),
        0 0 60px rgba(255, 101, 0, .2) !important;
}

@media (max-width: 600px) {

    .back-to-top {
        right: 18px !important;
        bottom: 18px !important;

        width: 48px !important;
        height: 48px !important;

        font-size: 22px !important;
    }

}



/* =========================================================
   FINAL LIVE JOB CARD FIX
   Matches the current main.js markup:
   .job-card > .job-card-left
                .job-card-middle
                .job-card-action
   ========================================================= */

#jobs .job-card {
    position: relative !important;
    display: grid !important;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(280px, .85fr)
        auto !important;

    align-items: center !important;
    gap: 35px !important;

    width: 100% !important;
    min-height: 210px !important;

    padding: 34px 36px !important;

    background:
        linear-gradient(
            145deg,
            rgba(16,16,16,.96),
            rgba(8,8,8,.98)
        ) !important;

    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 22px !important;

    overflow: hidden !important;
}

#jobs .job-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(255,101,0,.45) !important;
}

/* LEFT: number + title */
#jobs .job-card-left {
    min-width: 0 !important;

    display: flex !important;
    align-items: center !important;

    gap: 28px !important;
}

#jobs .job-number {
    flex: 0 0 68px !important;

    color: rgba(255,101,0,.28) !important;
    font-size: 48px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -3px !important;
}

#jobs .job-main {
    min-width: 0 !important;
    padding-top: 0 !important;
}

#jobs .job-main h3 {
    margin: 0 !important;

    color: #fff !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    letter-spacing: -.8px !important;

    overflow-wrap: anywhere !important;
}

#jobs .job-status {
    margin-bottom: 12px !important;
}

/* MIDDLE: department / location / type / experience */
#jobs .job-card-middle {
    min-width: 0 !important;

    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 28px !important;

    padding: 4px 0 4px 32px !important;

    border-left: 1px solid rgba(255,255,255,.09) !important;
}

#jobs .job-meta {
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
}

#jobs .job-meta span {
    color: #555 !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
}

#jobs .job-meta strong {
    color: #d8d8d8 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    white-space: normal !important;
}

/* ACTION */
#jobs .job-card-action {
    padding-left: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

#jobs .job-view-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;

    min-width: 170px !important;
    padding: 16px 20px !important;

    color: #fff !important;
    background: #ff6500 !important;
    border: 1px solid #ff6500 !important;
    border-radius: 11px !important;

    font-size: 12px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
}

#jobs .job-view-button:hover {
    background: #c94700 !important;
    border-color: #c94700 !important;
    transform: translateY(-2px) !important;
}

/* =========================================================
   JOB DETAIL MODAL
   ========================================================= */

.job-detail-modal {
    position: fixed !important;
    inset: 0 !important;

    z-index: 99999 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 30px !important;

    background: rgba(0,0,0,.82) !important;
    backdrop-filter: blur(14px) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transition:
        opacity .25s ease,
        visibility .25s ease !important;
}

.job-detail-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.job-detail-modal-box {
    position: relative !important;

    width: min(900px, 100%) !important;
    max-height: 88vh !important;

    overflow-y: auto !important;

    padding: 42px !important;

    background:
        linear-gradient(
            145deg,
            #151515,
            #080808
        ) !important;

    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 24px !important;

    box-shadow:
        0 40px 120px rgba(0,0,0,.65),
        0 0 50px rgba(255,101,0,.08) !important;
}

.job-modal-inner {
    position: relative !important;
}

.job-modal-close {
    position: absolute !important;
    top: -10px !important;
    right: 0 !important;

    width: 42px !important;
    height: 42px !important;

    border: 1px solid rgba(255,255,255,.15) !important;
    border-radius: 50% !important;

    background: #111 !important;
    color: #fff !important;

    font-size: 25px !important;
    cursor: pointer !important;
}

.job-modal-close:hover {
    background: #ff6500 !important;
    border-color: #ff6500 !important;
}

.job-modal-status {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;

    margin-bottom: 14px !important;

    color: #777 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 1.8px !important;
}

.job-modal-status span {
    width: 7px !important;
    height: 7px !important;

    border-radius: 50% !important;
    background: #ff6500 !important;
    box-shadow: 0 0 12px rgba(255,101,0,.7) !important;
}

.job-modal-title {
    margin: 0 55px 25px 0 !important;

    color: #fff !important;
    font-size: clamp(34px, 5vw, 54px) !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: -2px !important;
}

.job-modal-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;

    margin-bottom: 24px !important;
}

.job-modal-meta span {
    padding: 9px 13px !important;

    color: #d0d0d0 !important;
    background: rgba(255,255,255,.05) !important;

    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 8px !important;

    font-size: 11px !important;
}

.job-modal-salary,
.job-modal-closing {
    display: flex !important;
    justify-content: space-between !important;
    gap: 20px !important;

    padding: 16px 0 !important;

    border-top: 1px solid rgba(255,255,255,.08) !important;
}

.job-modal-salary strong,
.job-modal-closing strong {
    color: #777 !important;
    font-size: 10px !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
}

.job-modal-salary span,
.job-modal-closing span {
    color: #fff !important;
    font-size: 12px !important;
}

.job-modal-section {
    margin-top: 30px !important;
}

.job-modal-section h3 {
    margin-bottom: 14px !important;

    color: #ff6500 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
}

.job-modal-description {
    color: #bdbdbd !important;
    font-size: 14px !important;
    line-height: 1.85 !important;
}

.job-modal-description br {
    line-height: 2 !important;
}

.job-skills {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.skill-tag {
    padding: 8px 11px !important;

    color: #ddd !important;
    background: rgba(255,101,0,.08) !important;

    border: 1px solid rgba(255,101,0,.25) !important;
    border-radius: 7px !important;

    font-size: 11px !important;
}

.job-modal-actions {
    margin-top: 35px !important;
    padding-top: 25px !important;

    border-top: 1px solid rgba(255,255,255,.08) !important;
}

.job-apply-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 15px 24px !important;

    color: #fff !important;
    background: #ff6500 !important;
    border: 1px solid #ff6500 !important;
    border-radius: 10px !important;

    font-size: 12px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
}

.job-apply-btn:hover {
    background: #c94700 !important;
}

/* Prevent page from moving behind modal */
body.modal-open {
    overflow: hidden !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    #jobs .job-card {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(250px, .8fr)
            auto !important;

        gap: 22px !important;
    }

    #jobs .job-card-left {
        gap: 18px !important;
    }

    #jobs .job-number {
        flex-basis: 55px !important;
        font-size: 40px !important;
    }

    #jobs .job-main h3 {
        font-size: 24px !important;
    }

    #jobs .job-card-middle {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

@media (max-width: 800px) {

    #jobs .job-card {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding: 28px !important;
    }

    #jobs .job-card-left {
        align-items: flex-start !important;
    }

    #jobs .job-card-middle {
        grid-template-columns: 1fr 1fr !important;

        padding:
            20px 0 0 !important;

        border-left: 0 !important;
        border-top:
            1px solid rgba(255,255,255,.08) !important;
    }

    #jobs .job-card-action {
        justify-content: flex-start !important;
    }

    #jobs .job-view-button {
        width: 100% !important;
    }

    .job-detail-modal {
        padding: 15px !important;
    }

    .job-detail-modal-box {
        max-height: 92vh !important;
        padding: 28px 22px !important;
        border-radius: 18px !important;
    }

    .job-modal-title {
        font-size: 34px !important;
    }
}

@media (max-width: 500px) {

    #jobs .job-card-middle {
        grid-template-columns: 1fr !important;
    }

    #jobs .job-number {
        flex-basis: 45px !important;
        font-size: 34px !important;
    }

    #jobs .job-main h3 {
        font-size: 22px !important;
    }
}
/* =========================================================
   JOB DESCRIPTION — PROFESSIONAL FORMAT
========================================================= */

.job-description-heading {
    margin-top: 30px;
    margin-bottom: 13px;

    color: #ffffff;

    font-size: 16px;
    line-height: 1.3;

    font-weight: 800;
    letter-spacing: -.2px;
}

.job-description-heading:first-child {
    margin-top: 0;
}

.job-description-list {
    margin: 0 0 20px 0;
    padding: 0;

    list-style: none;
}

.job-description-list li {
    position: relative;

    margin: 0 0 10px 0;
    padding-left: 20px;

    color: #b8b8b8;

    font-size: 14px;
    line-height: 1.75;
}

.job-description-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 10px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ff6500;

    box-shadow:
        0 0 8px rgba(255,101,0,.55);
}
/* =========================================================
   JOB DESCRIPTION — FORMATTED CONTENT
   ========================================================= */

.job-description-heading {
    margin-top: 32px;
    margin-bottom: 14px;

    color: #ff6500;

    font-size: 16px;
    font-weight: 800;

    line-height: 1.3;
    letter-spacing: .5px;

    text-transform: uppercase;
}

.job-description-heading:first-child {
    margin-top: 0;
}


/* Description list */

.job-description-list {
    margin: 0 0 22px 0;
    padding: 0;

    list-style: none;
}


/* Individual responsibility / qualification */

.job-description-list li {
    position: relative;

    margin: 0 0 10px 0;
    padding-left: 20px;

    color: #b8b8b8;

    font-size: 15px;
    line-height: 1.75;

    font-weight: 400;
}


/* Orange bullet */

.job-description-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 10px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ff6500;

    box-shadow:
        0 0 8px rgba(255,101,0,.45);
}


/* =========================================================
   JOB DESCRIPTION MODAL CONTENT
   ========================================================= */

.job-description-content {
    width: 100%;
    max-width: 100%;

    color: #b8b8b8;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   JOB DESCRIPTION MODAL
   ========================================================= */

.job-modal {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(0,0,0,.82);

    backdrop-filter:
        blur(12px);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


.job-modal.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* Modal box */

.job-modal-card {
    position: relative;

    width: min(900px, 100%);

    max-height: 88vh;

    overflow-y: auto;

    padding: 45px;

    background:
        linear-gradient(
            145deg,
            #111111,
            #080808
        );

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 22px;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.65),

        0 0 50px
        rgba(255,101,0,.08);
}


/* Orange top line */

.job-modal-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 35px;

    width: 90px;
    height: 2px;

    background: #ff6500;
}


/* Modal close button */

.job-modal-close {
    position: absolute;

    top: 20px;
    right: 22px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #aaa;

    background: #151515;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 50%;

    font-size: 22px;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.job-modal-close:hover {
    color: #fff;

    background: #ff6500;

    border-color: #ff6500;

    transform: rotate(90deg);
}


/* Modal job title */

.job-modal-title {
    margin: 0;

    padding-right: 55px;

    color: #fff;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2px;
}


/* Modal meta */

.job-modal-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;
}


.job-modal-meta span {
    display: inline-flex;

    align-items: center;

    padding:
        7px 12px;

    color: #aaa;

    background: #151515;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 999px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .5px;
}


.job-modal-meta span:first-child {
    color: #ff6500;

    border-color:
        rgba(255,101,0,.30);
}


/* Description wrapper */

.job-modal-description {
    margin-top: 35px;

    padding-top: 30px;

    border-top:
        1px solid
        rgba(255,255,255,.08);
}


/* =========================================================
   MODAL SCROLLBAR
   ========================================================= */

.job-modal-card::-webkit-scrollbar {
    width: 6px;
}

.job-modal-card::-webkit-scrollbar-track {
    background: #080808;
}

.job-modal-card::-webkit-scrollbar-thumb {
    background: #333;

    border-radius: 10px;
}

.job-modal-card::-webkit-scrollbar-thumb:hover {
    background: #ff6500;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .job-modal {
        padding: 15px;
    }


    .job-modal-card {
        max-height: 92vh;

        padding: 30px 22px;

        border-radius: 18px;
    }


    .job-modal-title {
        font-size: 30px;

        letter-spacing: -1px;
    }


    .job-description-heading {
        margin-top: 25px;

        font-size: 14px;
    }


    .job-description-list li {
        font-size: 13px;

        line-height: 1.65;

        padding-left: 17px;
    }


    .job-description-content {
        font-size: 13px;

        line-height: 1.65;
    }


    .job-modal-meta {
        gap: 7px;
    }


    .job-modal-meta span {
        font-size: 9px;

        padding: 6px 9px;
    }


    .job-modal-close {
        width: 34px;
        height: 34px;

        top: 15px;
        right: 15px;
    }

}
/* =========================================================
   JOB DESCRIPTION — AUTO SECTIONS
========================================================= */

.job-description-section {
    margin-bottom: 34px;
}

.job-description-section:last-child {
    margin-bottom: 0;
}


/* SECTION HEADING */

.job-description-heading {
    margin: 0 0 16px;

    color: #ff6500 !important;

    font-size: 17px !important;

    line-height: 1.3;

    font-weight: 900 !important;

    letter-spacing: .3px;

    text-transform: none;

    display: block;
}


/* BULLET LIST */

.job-description-list {
    margin: 0;

    padding: 0;

    list-style: none;
}


/* EACH POINT */

.job-description-list li {
    position: relative;

    margin: 0 0 12px;

    padding-left: 21px;

    color: #b8b8b8;

    font-size: 14px;

    line-height: 1.75;

    font-weight: 400;
}


/* ORANGE BULLET */

.job-description-list li::before {
    content: "";

    position: absolute;

    left: 2px;

    top: 10px;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #ff6500;

    box-shadow:
        0 0 8px
        rgba(255,101,0,.45);
}


/* INTRO TEXT */

.job-description-intro,
.job-description-text {
    margin: 0 0 20px;

    color: #b8b8b8;

    font-size: 14px;

    line-height: 1.75;
}


/* MOBILE */

@media (max-width: 700px) {

    .job-description-section {
        margin-bottom: 28px;
    }

    .job-description-heading {
        font-size: 15px !important;

        margin-bottom: 13px;
    }

    .job-description-list li {
        font-size: 13px;

        line-height: 1.65;

        margin-bottom: 10px;

        padding-left: 18px;
    }

    .job-description-intro,
    .job-description-text {
        font-size: 13px;

        line-height: 1.65;
    }

}
/* =========================================================
   JOB DESCRIPTION — PREMIUM STRUCTURE
========================================================= */

.job-description-section {
    margin-bottom: 38px;
}

.job-description-section:last-child {
    margin-bottom: 0;
}


.job-description-heading {
    margin: 0 0 16px !important;

    color: #ffffff !important;

    font-size: 19px !important;

    line-height: 1.3 !important;

    font-weight: 800 !important;

    letter-spacing: -0.2px !important;
}


.job-description-list {
    list-style: none !important;

    margin: 0 !important;

    padding: 0 !important;
}


.job-description-list li {
    position: relative;

    margin-bottom: 12px;

    padding-left: 22px;

    color: #b8b8b8;

    font-size: 15px;

    line-height: 1.75;
}


.job-description-list li::before {
    content: "";

    position: absolute;

    left: 2px;

    top: 11px;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #ff6500;

    box-shadow: 0 0 10px rgba(255,101,0,.45);
}


/* =========================================================
   JOB TITLE — SMALLER PREMIUM LOOK
========================================================= */

.job-modal-title {
    font-size: clamp(42px, 4.5vw, 64px) !important;

    line-height: 0.98 !important;

    letter-spacing: -2.5px !important;

    font-weight: 800 !important;

    max-width: 850px;
}


/* =========================================================
   PREMIUM SCROLLBAR
========================================================= */

#jobDetailModal {
    scrollbar-width: thin;

    scrollbar-color:
        #ff6500
        #0a0a0a;
}


#jobDetailModal::-webkit-scrollbar {
    width: 7px;
}


#jobDetailModal::-webkit-scrollbar-track {
    background: #0a0a0a;
}


#jobDetailModal::-webkit-scrollbar-thumb {
    background: #ff6500;

    border-radius: 20px;

    border: 1px solid #0a0a0a;
}


#jobDetailModal::-webkit-scrollbar-thumb:hover {
    background: #ff8533;
}


/* MOBILE */

@media (max-width: 700px) {

    .job-modal-title {
        font-size: 42px !important;
        letter-spacing: -1.5px !important;
    }

    .job-description-heading {
        font-size: 17px !important;
    }

    .job-description-list li {
        font-size: 14px;
        line-height: 1.65;
    }

}
/* =========================================================
   JOB DESCRIPTION — FINAL STRUCTURE
========================================================= */

.job-modal-description {
    width: 100%;
}


.job-description-section {
    margin: 0 0 42px 0;
}


.job-description-section:last-child {
    margin-bottom: 0;
}


/* SECTION HEADING */

.job-description-heading {
    display: block;

    margin: 0 0 18px 0 !important;

    color: #ffffff !important;

    font-size: 19px !important;

    line-height: 1.35 !important;

    font-weight: 800 !important;

    letter-spacing: -0.2px !important;
}


/* BULLET LIST */

.job-description-list {
    display: block;

    margin: 0 !important;

    padding: 0 !important;

    list-style: none !important;
}


/* EACH POINT */

.job-description-list li {
    position: relative;

    display: block;

    margin: 0 0 12px 0;

    padding: 0 0 0 22px;

    color: #b8b8b8;

    font-size: 15px;

    line-height: 1.75;

    font-weight: 400;
}


/* ORANGE DOT */

.job-description-list li::before {

    content: "";

    position: absolute;

    left: 2px;

    top: 11px;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #ff6500;

    box-shadow:
        0 0 8px
        rgba(255, 101, 0, 0.45);
}


/* FALLBACK */

.job-description-text {
    margin: 0 0 16px;

    color: #b8b8b8;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   JOB TITLE — SMALLER PREMIUM
========================================================= */

.job-modal-title {

    font-size:
        clamp(42px, 4.2vw, 62px)
        !important;

    line-height:
        0.98
        !important;

    letter-spacing:
        -2px
        !important;

    font-weight:
        800
        !important;

    max-width:
        800px;
}


/* =========================================================
   PREMIUM SCROLLBAR
========================================================= */

#jobDetailModal {
    scrollbar-width: thin;

    scrollbar-color:
        #ff6500
        #0b0b0b;
}


#jobDetailModal::-webkit-scrollbar {
    width: 7px;
}


#jobDetailModal::-webkit-scrollbar-track {
    background: #090909;
}


#jobDetailModal::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            180deg,
            #ff7b00,
            #ff6500
        );

    border-radius: 20px;

    border:
        1px solid #090909;
}


#jobDetailModal::-webkit-scrollbar-thumb:hover {
    background: #ff8a2b;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .job-modal-title {

        font-size:
            40px
            !important;

        line-height:
            1
            !important;

        letter-spacing:
            -1.3px
            !important;
    }


    .job-description-heading {

        font-size:
            17px
            !important;
    }


    .job-description-list li {

        font-size:
            14px;

        line-height:
            1.65;

        margin-bottom:
            10px;
    }

}
/* =========================================================
   JOB POSITION TITLE — SINGLE ROW
========================================================= */

.job-modal-title {
    font-size: 42px !important;
    line-height: 1.05 !important;

    letter-spacing: -1.5px !important;

    font-weight: 800 !important;

    white-space: nowrap !important;

    max-width: none !important;

    margin: 0 60px 28px 0 !important;
}
.job-modal-title {
    font-size: 36px !important;
    white-space: nowrap !important;
}
.job-modal-title {
    font-size: 42px !important;
    line-height: 1.05 !important;
    letter-spacing: -1.5px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    max-width: none !important;
}

@media (max-width: 700px) {
    .job-modal-title {
        font-size: 34px !important;
        white-space: normal !important;
    }
}
/* =========================================================
   CONFINALITY — PREMIUM APPLICATION FORM
   Dark / Orange / Typeform Inspired
========================================================= */


/* =========================================================
   APPLICATION MODAL OVERLAY
========================================================= */

#applyModal {
    position: fixed;

    inset: 0;

    z-index: 100000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 24px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 101, 0, 0.08),
            transparent 35%
        ),
        rgba(3, 3, 3, 0.94);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);
}


#applyModal.active {
    display: flex;
}


/* =========================================================
   MAIN FORM CARD
========================================================= */

#applyModal .typeform-box {

    position: relative;

    width: min(820px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    padding: 64px 72px 32px;

    background:
        linear-gradient(
            145deg,
            #161616 0%,
            #0c0c0c 55%,
            #080808 100%
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 26px;

    box-shadow:
        0 50px 120px
        rgba(0, 0, 0, 0.75),

        0 0 80px
        rgba(255, 101, 0, 0.06);

    animation:
        applicationModalIn
        .4s
        cubic-bezier(.16,1,.3,1);

    scrollbar-width: thin;

    scrollbar-color:
        #ff6500
        #111;
}


/* TOP ORANGE ACCENT */

#applyModal .typeform-box::before {

    content: "";

    position: absolute;

    top: 0;
    left: 60px;

    width: 110px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #ff6500,
            #ff9b5b
        );

    border-radius:
        0 0 10px 10px;

    box-shadow:
        0 0 20px
        rgba(255, 101, 0, 0.45);
}


@keyframes applicationModalIn {

    from {
        opacity: 0;

        transform:
            translateY(30px)
            scale(.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* =========================================================
   PREMIUM SCROLLBAR
========================================================= */

#applyModal .typeform-box::-webkit-scrollbar {
    width: 7px;
}


#applyModal .typeform-box::-webkit-scrollbar-track {
    background: #090909;
}


#applyModal .typeform-box::-webkit-scrollbar-thumb {

    background:
        linear-gradient(
            180deg,
            #ff7b00,
            #ff6500
        );

    border-radius: 20px;

    border:
        1px solid #090909;
}


#applyModal .typeform-box::-webkit-scrollbar-thumb:hover {
    background: #ff8b2d;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

#applyModal .close-modal {

    position: absolute;

    top: 22px;
    right: 24px;

    z-index: 10;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #888;

    background:
        rgba(255,255,255,.035);

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 50%;

    font-size: 24px;

    line-height: 1;

    cursor: pointer;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .3s ease;
}


#applyModal .close-modal:hover {

    color: #fff;

    background: #ff6500;

    border-color: #ff6500;

    transform: rotate(90deg);

    box-shadow:
        0 0 25px
        rgba(255,101,0,.25);
}


/* =========================================================
   ONE QUESTION PER SCREEN
========================================================= */

#applyModal .step {

    display: none;

    min-height: 430px;

    flex-direction: column;

    justify-content: center;

    animation:
        applicationQuestionIn
        .38s
        cubic-bezier(.16,1,.3,1);
}


#applyModal .step.active {

    display: flex;
}


@keyframes applicationQuestionIn {

    from {

        opacity: 0;

        transform:
            translateX(24px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* =========================================================
   QUESTION HEADING
========================================================= */

#applyModal .step > h2 {

    margin: 0 0 30px;

    max-width: 700px;

    color: #ffffff;

    font-size:
        clamp(30px, 4vw, 46px);

    line-height: 1.10;

    font-weight: 800;

    letter-spacing: -1.8px;
}


/* ORANGE ASTERISK */

#applyModal .step > h2::first-letter {
    color: #fff;
}


/* =========================================================
   INPUTS
========================================================= */

#applyModal input,
#applyModal select,
#applyModal textarea {

    width: 100%;

    box-sizing: border-box;

    color: #ffffff;

    background:
        rgba(255,255,255,.035);

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 12px;

    outline: none;

    font-family: inherit;

    font-size: 16px;

    font-weight: 500;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


#applyModal input,
#applyModal select {

    height: 58px;

    padding:
        0 18px;
}


#applyModal textarea {

    min-height: 180px;

    padding:
        17px 18px;

    resize: vertical;

    line-height: 1.6;
}


/* PLACEHOLDER */

#applyModal input::placeholder,
#applyModal textarea::placeholder {

    color:
        rgba(255,255,255,.30);
}


/* FOCUS */

#applyModal input:focus,
#applyModal select:focus,
#applyModal textarea:focus {

    background:
        rgba(255,101,0,.035);

    border-color:
        #ff6500;

    box-shadow:
        0 0 0 4px
        rgba(255,101,0,.08),

        0 0 30px
        rgba(255,101,0,.06);

    transform:
        translateY(-1px);
}


/* =========================================================
   SELECT
========================================================= */

#applyModal select {

    appearance: none;

    -webkit-appearance: none;

    padding-right: 50px;

    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, #ff6500 50%),
        linear-gradient(135deg, #ff6500 50%, transparent 50%);

    background-position:
        calc(100% - 22px) 25px,
        calc(100% - 16px) 25px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}


#applyModal select option {

    color: #fff;

    background: #151515;
}


/* =========================================================
   WELCOME / INTRO SCREENS
========================================================= */

#applyModal .welcome-screen {

    max-width: 680px;
}


/* SMALL EYEBROW EFFECT */

#applyModal .welcome-screen::before {

    content: "CONFINALITY CAREERS";

    display: block;

    margin-bottom: 22px;

    color: #ff6500;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


/* WELCOME HEADINGS */

#applyModal .welcome-screen h1 {

    margin: 0 0 25px;

    color: #fff;

    font-size:
        clamp(36px, 5vw, 58px);

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2.5px;
}


/* WELCOME PARAGRAPHS */

#applyModal .welcome-screen p {

    margin:
        0 0 18px;

    max-width: 650px;

    color:
        rgba(255,255,255,.62);

    font-size: 15px;

    line-height: 1.85;

    font-weight: 400;
}


/* JOURNEY TEXT */

#applyModal .welcome-screen .journey-text {

    margin-top: 28px;

    color: #ff6500 !important;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: .2px;
}


/* =========================================================
   FILE UPLOAD
========================================================= */

#applyModal input[type="file"] {

    height: auto;

    min-height: 58px;

    padding: 9px;

    cursor: pointer;
}


#applyModal input[type="file"]::file-selector-button {

    margin-right: 12px;

    padding:
        10px 16px;

    color: #fff;

    background: #ff6500;

    border: none;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;

    transition: .25s ease;
}


#applyModal input[type="file"]::file-selector-button:hover {

    background: #e45700;
}


/* =========================================================
   NAVIGATION
========================================================= */

#applyModal .step-navigation {

    position: sticky;

    bottom: 0;

    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 14px;

    margin-top: 15px;

    padding-top: 22px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            #0a0a0a 25%
        );

    border-top:
        1px solid
        rgba(255,255,255,.07);
}


/* BUTTON BASE */

#applyModal #prevBtn,
#applyModal #nextBtn {

    min-width: 115px;

    height: 46px;

    padding:
        0 22px;

    border-radius: 9px;

    font-family: inherit;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .4px;

    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}


/* PREVIOUS */

#applyModal #prevBtn {

    color:
        rgba(255,255,255,.55);

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.11);
}


#applyModal #prevBtn:hover {

    color: #fff;

    background:
        rgba(255,255,255,.06);

    border-color:
        rgba(255,255,255,.25);

    transform:
        translateY(-2px);
}


/* NEXT */

#applyModal #nextBtn {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #ff7a00,
            #ff5a00
        );

    border:
        1px solid
        #ff6500;

    box-shadow:
        0 8px 25px
        rgba(255,101,0,.16);
}


#applyModal #nextBtn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(255,101,0,.25);

    background:
        linear-gradient(
            135deg,
            #ff8a20,
            #ff6500
        );
}


#applyModal #nextBtn:active,
#applyModal #prevBtn:active {

    transform:
        translateY(0);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

#applyModal
.step button[onclick="submitApplication()"] {

    width: auto;

    min-width: 160px;

    height: 52px;

    padding:
        0 28px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #ff7a00,
            #ff5a00
        );

    border: none;

    border-radius: 10px;

    font-family: inherit;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .4px;

    cursor: pointer;

    box-shadow:
        0 10px 30px
        rgba(255,101,0,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


#applyModal
.step button[onclick="submitApplication()"]:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 35px
        rgba(255,101,0,.28);
}


/* =========================================================
   VALIDATION MESSAGE
========================================================= */

#applicationStepError {

    margin-top: 12px;

    padding:
        10px 14px;

    color:
        #ff9b72;

    background:
        rgba(255,101,0,.07);

    border:
        1px solid
        rgba(255,101,0,.18);

    border-radius: 8px;

    font-size: 12px;
}


/* =========================================================
   PROCESSING POPUP
========================================================= */

.processing-popup {

    position: fixed;

    inset: 0;

    z-index: 200000;

    display: none;

    align-items: center;
    justify-content: center;

    background:
        rgba(0,0,0,.88);

    backdrop-filter:
        blur(15px);
}


.processing-popup.active {

    display: flex;
}


.processing-card {

    width:
        min(430px, calc(100% - 40px));

    padding:
        45px 35px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0b0b0b
        );

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 22px;

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.7);
}


.processing-card h2 {

    margin:
        20px 0 10px;

    color: #fff;

    font-size: 22px;

    font-weight: 800;
}


.processing-card p {

    margin: 0;

    color: #888;

    font-size: 13px;

    line-height: 1.7;
}


.processing-note {

    margin-top: 10px !important;

    color:
        #ff6500 !important;

    font-size: 11px !important;
}


/* SPINNER */

.processing-spinner {

    width: 42px;
    height: 42px;

    margin: 0 auto;

    border:
        3px solid
        rgba(255,255,255,.08);

    border-top-color:
        #ff6500;

    border-right-color:
        #ff6500;

    border-radius: 50%;

    animation:
        applicationSpin
        .8s
        linear
        infinite;
}


@keyframes applicationSpin {

    to {
        transform:
            rotate(360deg);
    }

}


/* =========================================================
   SUCCESS POPUP
========================================================= */

.success-popup {

    position: fixed;

    inset: 0;

    z-index: 200000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(0,0,0,.88);

    backdrop-filter:
        blur(15px);
}


.success-popup.active {

    display: flex;
}


.success-card {

    width:
        min(440px, calc(100% - 30px));

    padding:
        45px 35px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0b0b0b
        );

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 22px;

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.75);
}


.success-icon {

    width: 62px;
    height: 62px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        #ff6500;

    border-radius: 50%;

    font-size: 30px;

    font-weight: 700;

    box-shadow:
        0 0 35px
        rgba(255,101,0,.25);
}


.success-card h2 {

    margin:
        0 0 12px;

    color: #fff;

    font-size: 25px;

    font-weight: 800;
}


.success-card p {

    margin:
        0 0 25px;

    color: #888;

    font-size: 13px;

    line-height: 1.7;
}


.success-card button {

    min-width: 120px;

    height: 44px;

    padding: 0 20px;

    color: #fff;

    background: #ff6500;

    border: none;

    border-radius: 9px;

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;

    transition: .25s ease;
}


.success-card button:hover {

    background: #e45700;

    transform:
        translateY(-2px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    #applyModal {

        padding: 10px;
    }


    #applyModal .typeform-box {

        width: 100%;

        max-height: 94vh;

        padding:
            55px 24px 24px;

        border-radius: 20px;
    }


    #applyModal .typeform-box::before {

        left: 30px;

        width: 80px;
    }


    #applyModal .step {

        min-height: 390px;
    }


    #applyModal .step > h2 {

        font-size: 29px;

        line-height: 1.12;

        letter-spacing: -1px;

        margin-bottom: 25px;
    }


    #applyModal .welcome-screen h1 {

        font-size: 36px;

        letter-spacing: -1.5px;
    }


    #applyModal .welcome-screen p {

        font-size: 14px;

        line-height: 1.75;
    }


    #applyModal input,
    #applyModal select {

        height: 54px;

        font-size: 14px;
    }


    #applyModal textarea {

        min-height: 150px;

        font-size: 14px;
    }


    #applyModal .step-navigation {

        padding-top: 18px;
    }


    #applyModal #prevBtn,
    #applyModal #nextBtn {

        min-width: 100px;

        height: 44px;
    }


    #applyModal .close-modal {

        top: 15px;

        right: 15px;

        width: 36px;

        height: 36px;

        font-size: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    #applyModal .typeform-box {

        padding-left: 19px;

        padding-right: 19px;
    }


    #applyModal .step > h2 {

        font-size: 26px;
    }


    #applyModal .welcome-screen h1 {

        font-size: 32px;
    }

}

/* =========================================================
   APPLICATION FORM — FINAL UI FIXES
========================================================= */

#applyModal .welcome-screen .application-eyebrow {
    display: none !important;
}

#applyModal .step-navigation {
    width: 100% !important;
    min-height: 68px;
    box-sizing: border-box !important;
    align-self: stretch !important;
    flex: 0 0 auto !important;
    margin-top: 22px !important;
    padding: 18px 0 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

#applyModal #prevBtn,
#applyModal #nextBtn {
    width: auto !important;
    min-width: 132px !important;
    height: 48px !important;
    padding: 0 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    line-height: 1 !important;
}

#applyModal #prevBtn[style*="display: none"],
#applyModal #nextBtn[style*="display: none"] {
    display: none !important;
}

#applyModal #prevBtn {
    margin-right: auto !important;
}

#applyModal #nextBtn {
    margin-left: auto !important;
}

#applyModal .application-step-error {
    display: none;
    width: 100%;
    box-sizing: border-box;
    margin: 16px 0 0;
    padding: 12px 14px;
    color: #ff9a66;
    background: rgba(255,101,0,.08);
    border: 1px solid rgba(255,101,0,.24);
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.5;
}

#applyModal .application-step-error.show {
    display: block !important;
}

#applyModal select {
    min-height: 58px;
    color: #fff !important;
}

#applyModal select option {
    padding: 12px;
    color: #fff !important;
    background: #151515 !important;
}

#applyModal .step input + input,
#applyModal .step input + textarea,
#applyModal .step select + input,
#applyModal .step textarea + input {
    margin-top: 14px;
}

@media (max-width: 700px) {
    #applyModal .step-navigation {
        min-height: 70px;
        padding: 14px 0 0 !important;
    }

    #applyModal #prevBtn,
    #applyModal #nextBtn {
        min-width: 112px !important;
        height: 46px !important;
        padding: 0 16px !important;
        font-size: 11px !important;
    }
}
/* =====================================================
   STOP BACKGROUND SCROLL WHEN JOB DETAIL MODAL IS OPEN
===================================================== */

body.modal-open {
    overflow: hidden !important;
    height: 100vh !important;
}

html:has(body.modal-open) {
    overflow: hidden !important;
}   
/* =====================================================
   VIEW POSITION POPUP SCROLL
===================================================== */

#jobViewModal {
    overflow: hidden !important;
}

#jobViewModal .modal {
    max-height: 90vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch;
}
