﻿:root {
    --o: #FF8011;
    --od: #d96a00;
    --ol: #fff4eb;
    --ob: #ffd9ab;
    --b: #1673FF;
    --bd: #0d5edf;
    --bl: #dfeaff;
    --dk: #0a0a0a;
    --mid: #4a4a4a;
    --muted: #888;
    --border: #e2e2e2;
    --surface: #f5f6fa;
    /* Color Variables */
    --color-orange: #ff8011;
    --color-orange-dark: #d96a00;
    --color-orange-accent: #ff6a00;
    --color-orange-light: #fff4eb;
    --color-orange-background: #ffd9ab;
    --color-orange-background-light: #fff8f2;
    --color-blue: #1673ff;
    --color-background-dark: #0d5edf;
    --color-blue-light: #dfeaff;
    --color-dark: #333;
    --color-dark-knight: #0a0a0a;
    --color-dim: #777;
    --color-green: #16a34a;
    --color-green-light: #f0fdf4;
    --color-green-background: #bbf7d0;
    --color-silver: #e8e8e8;
    --color-peech: #ffb347;
    --color-mid: #4a4a4a;
    --color-muted: #888;
    --color-border: #e2e2e2;
    --color-surface: #f9f9f9;
    --color-white: #fff;
    --color-light-white: #f0f0f0;
    --color-disabled: #aaa;
    --color-divider: #ccc;
    --color-text: #3a3a3a;
    --color-text-alt: #404040;
    --color-near-black: #080808;
    --color-border-dark: #161616;
    --color-light-gray: #c0c0c0;
    /* Inter */
    --font-inter-black: 'Inter-Black', sans-serif;
    --font-inter-bold: 'Inter-Bold', sans-serif;
    --font-inter-medium: 'Inter-Medium', sans-serif;
    --font-inter-regular: 'Inter-Regular', sans-serif;
    --font-inter-semibold: 'Inter-Semibold', sans-serif;
    /* Archivo */
    --font-archivo-black: 'Archivo-Black', sans-serif;
    --font-archivo-bold: 'Archivo-Bold', sans-serif;
    --font-archivo-medium: 'Archivo-Medium', sans-serif;
    --font-archivo-regular: 'Archivo-Regular', sans-serif;
    --font-archivo-semibold: 'Archivo-Semibold', sans-serif;
    /* Font Weight */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-black: 900;
}

/* ── GLOBAL Styling ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter-regular);
    font-weight: var(--fw-regular);
    color: var(--color-dark-knight);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
} 

.btn-orange,  
.new-home nav.navbar.header-snap-roles .nav-btn-signup .nav-link { 
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold);
    font-size: 16px;
    color: var(--color-white);
    cursor: pointer;
    background: var(--color-orange);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    transition: all 0.25s;
}

    .btn-orange:hover,
    .new-home nav.navbar.header-snap-roles .nav-btn-signup .nav-link:hover {
        background: var(--color-orange-dark);
    }

    .new-home nav.navbar.header-snap-roles .nav-btn-signup .nav-link {
        padding: 10px 22px;  
    }

.new-home nav.navbar.header-snap-roles.sticky .nav-btn-signup .nav-link {
    color: rgba(255, 255, 255, 1);
}

.new-home nav.navbar.header-snap-roles.sticky .nav-btn-signup .nav-link:hover {
    color: rgba(255, 255, 255, 1); 
}

/* ── GLOBAL slide SYSTEM ── */
    .slide {
        opacity: 0;
        transform: translateY(48px);
        transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .slide.visible {
        opacity: 1;
        transform: translateY(0);
    }

.slide-left {
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

    .slide-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.slide-right {
    opacity: 0;
    transform: translateX(48px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

    .slide-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

.slide-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

    .slide-scale.visible {
        opacity: 1;
        transform: scale(1);
    }

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

.d5 {
    transition-delay: 0.5s;
}

.d6 {
    transition-delay: 0.6s;
}

/* ── NAV ── */
.new-home nav.navbar.header-snap-roles { 
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 0 56px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
    background: none; 
}

nav.scrolled,
.navbar.header-snap-roles.sticky {
    background: rgba(255, 255, 255, 0.99) !important; 
/*    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);*/
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.snarole-logo img {
    height: 32px;
    width: auto;
    display: block;
    transition: filter 0.4s;
}

nav.scrolled .snarole-logo img {
    filter: none;
}

.menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

    .menu a {
        font-size: 14px;
        font-family: var(--font-inter-medium);
        font-weight: var(--fw-medium);
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        padding: 8px 14px;
        border-radius: 8px;
        transition: all 0.2s;
    }

nav.scrolled .menu a {
    color: var(--color-mid);
}

.menu a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
}

nav.scrolled .menu a:hover {
    color: var(--color-dark-knight);
    background: var(--color-surface);
}

.login-sigup__btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-btn {
    font-size: 14px;
    font-family: var(--font-inter-semibold);
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

nav.scrolled .login-btn {
    color: var(--color-blue);
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

nav.scrolled .login-btn:hover {
    background: var(--color-blue-light);
}

.signup-btn {
    padding: 10px 22px;
}

    .signup-btn:hover {
        background: var(--color-orange-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(255, 128, 17, 0.5);
    }

.new-home nav.navbar.header-snap-roles .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.new-home nav.navbar.header-snap-roles .nav-link:hover {
    color: rgba(255, 255, 255, 1);  
}

.new-home nav.navbar.header-snap-roles.sticky .nav-link {
    color: #555;
}

.new-home nav.navbar.header-snap-roles.sticky .nav-link:hover {
    color: #111; 
}

    .new-home nav.navbar.header-snap-roles .nav-link .imageTextContainer svg path {
        stroke: rgba(255, 255, 255, 0.85);
    }

    .new-home nav.navbar.header-snap-roles .nav-link:hover .imageTextContainer svg path { 
        stroke: rgba(255, 255, 255, 1);
    }
    
    .new-home nav.navbar.header-snap-roles.sticky .nav-link .imageTextContainer svg path {
        stroke: #555;
    }

    .new-home nav.navbar.header-snap-roles.sticky .nav-link:hover .imageTextContainer svg path { 
        stroke: #111;
    }

.new-home nav.navbar.header-snap-roles .right-icon-navbar > .navbar-toggler svg path,
.new-home .nav-log-sm button.dropdown-toggle svg {
    fill: rgba(255, 255, 255, 0.85);
}

.new-home nav.navbar.header-snap-roles .right-icon-navbar > .navbar-toggler:hover svg path,
.new-home .nav-log-sm button.dropdown-toggle:hover svg { 
    fill: rgba(255, 255, 255, 1); 
}

.new-home nav.navbar.header-snap-roles.sticky .right-icon-navbar > .navbar-toggler svg path,
.new-home nav.navbar.header-snap-roles.sticky .nav-log-sm button.dropdown-toggle svg {
    fill: #555;
}

.new-home nav.navbar.header-snap-roles.sticky .right-icon-navbar > .navbar-toggler:hover svg path,
.new-home nav.navbar.header-snap-roles.sticky .nav-log-sm button.dropdown-toggle:hover svg {
    fill: #111;
}

.new-home .navbar-new .nav-hide-lg .dropdown-menu .nav-link {
    color: #555; 
}

.new-home .navbar-new .nav-hide-lg .dropdown-menu .nav-link:hover {
    color: #111; 
}

/* ── HERO BANNER ── */
.hero-banner__wrapper {
    width: 100%; 
    min-height: 100svh; 
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px;
}

/* animated mesh gradient */
.hero-banner__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient( ellipse 80% 60% at 20% 50%, rgba(255, 128, 17, 0.18) 0%, transparent 60% ), radial-gradient( ellipse 70% 70% at 80% 40%, rgba(22, 115, 255, 0.2) 0%, transparent 60% ), radial-gradient( ellipse 60% 50% at 50% 80%, rgba(255, 128, 17, 0.1) 0%, transparent 60% );
    animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% {
        background: radial-gradient( ellipse 80% 60% at 20% 50%, rgba(255, 128, 17, 0.18) 0%, transparent 60% ), radial-gradient( ellipse 70% 70% at 80% 40%, rgba(22, 115, 255, 0.2) 0%, transparent 60% ), radial-gradient( ellipse 60% 50% at 50% 80%, rgba(255, 128, 17, 0.1) 0%, transparent 60% );
    }

    100% {
        background: radial-gradient( ellipse 80% 60% at 35% 45%, rgba(255, 128, 17, 0.22) 0%, transparent 60% ), radial-gradient( ellipse 70% 70% at 70% 55%, rgba(22, 115, 255, 0.18) 0%, transparent 60% ), radial-gradient( ellipse 60% 50% at 45% 70%, rgba(255, 128, 17, 0.14) 0%, transparent 60% );
    }
}

/* grid lines */
.hero-banner__grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
/*    inset: 0;*/
    z-index: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient( ellipse 90% 80% at 50% 50%, black 30%, transparent 100% );
}

/* particle dots */
.hero-banner__particles { 
    position: absolute;
    inset: 0;
    top: 0;
    left: 0; 
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: 100%; 
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: particleDrift linear infinite;
}

@keyframes particleDrift {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-20vh) scale(1);
        opacity: 0;
    }
}

.hero-banner__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-family: var(--font-inter-semibold);
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    animation: heroFadeDown 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroFadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .hero-banner__badge {
        font-size: 10px;
    }
}

.hero-banner__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-orange);
    box-shadow: 0 0 0 0 rgba(255, 128, 17, 0.6);
    animation: pulsering 2s infinite;
}

@keyframes pulsering {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 128, 17, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 128, 17, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 128, 17, 0);
    }
}

.hero-banner__h {
    font-family: var(--font-archivo-black) !important;
    font-weight: var(--fw-black) !important;
    font-size: clamp(40px, 7vw, 90px) !important;
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
    color: var(--color-white);
    margin-bottom: 28px;
    animation: heroScale 0.9s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* word-by-word color animation */
.hero-banner__h .w-o {
    color: var(--color-orange);
}

.hero-banner__h .w-b {
    color: var(--color-blue);
}

.hero-banner__sub {
    font-size: clamp(14px, 2vw, 21px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 540px;
    margin: 0 auto 44px;
    animation: heroFadeUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-banner__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.8s 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
    margin-bottom: 50px; 
}

.btn-hero__banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold);
    font-size: 17px;
    color: var(--color-white);
    background: var(--color-orange);
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 17px 34px;
    border-radius: 14px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .btn-hero__banner {
        font-size: 14px;
    }
}

.btn-hero__banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50% );
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-hero__banner:hover::before {
    opacity: 1;
}

.btn-hero__banner:hover {
    background: var(--color-orange-dark); 
}

.btn-hero__banner:active {
    transform: translateY(-1px);
}

.btn-hero__banner-ghost {
    font-size: 16px;
    font-family: var(--font-inter-medium);
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 17px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s;
    backdrop-filter: blur(8px);
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .btn-hero__banner-ghost {
        font-size: 14px;
    }
}

.btn-hero__banner-ghost:hover {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

/* Trust chips */
.hero-banner__chips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.8s 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-banner__hchip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 8px 15px;
    font-size: 13px;
    font-family: var(--font-inter-medium);
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.9); 
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .hero-banner__hchip {
        font-size: 10px;
    }
}

.hero-banner__hchip-icon {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Scroll indicator */
.hero-banner__scroll-hint {
    position: absolute;
    bottom: 8px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    font-family: var(--font-inter-semibold);
    font-weight: var(--fw-semibold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: heroFadeUp 0.8s 1.2s ease both;
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .hero-banner__scroll-hint {
        font-size: 10px;
    }
}

.hero-banner__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .hero-banner__scroll-mouse {
        width: 16px;
        height: 30px;
    }
}

.hero-banner__scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollWheel 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* ── JOBS CARD SECTION (below hero, scroll-triggered) ── */
.jobs-section_wrapper {
    background: var(--color-white);
    padding: 96px 40px;
    position: relative;
    overflow: hidden;
}
/* Tablet-only styles (768px <= width <=991px)  */
@media (768px <= width <=991px) {
    .jobs-section_wrapper {
        padding: 60px 30px;
    }
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .jobs-section_wrapper {
        padding: 40px 10px;
    }
}

.jobs-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
/* Tablet-only styles (768px <= width <=991px)  */
@media (768px <= width <=991px) {
    .jobs-inner {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .jobs-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.jobs-text .sub-title {
    display: inline-block;
    font-size: 11px;
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 16px;
}

.jobs-text h2 {
    font-family: var(--font-archivo-black) !important;
    font-weight: var(--fw-black) !important;
    font-size: clamp(30px, 4vw, 52px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.025em !important;
    color: var(--color-dark-knight);
    margin-bottom: 18px;
}

.jobs-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-mid) !important;
    margin-bottom: 36px;
}

/* jobs widget */
.jobs-block {
    background: var(--color-white);
    border-radius: 24px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
}

.jobs-block__top-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-blue) 100%);
}

.jobs-block__body {
    padding: 24px 24px 20px;
}

.jobs-block__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .jobs-block__header {
        flex-direction: column;
        gap: 16px;
    }
}

.jobs-block__title {
    font-family: var(--font-archivo-black);
    font-weight: var(--fw-black);
    font-size: 16px;
    color: var(--color-dark-knight);
}

.jobs-block__sub-title {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
}

.live-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold);
    color: var(--color-green);
    background: var(--color-green-light);
    border: 1px solid var(--color-green-background);
    padding: 5px 11px;
    border-radius: 100px;
    flex-shrink: 0;
}
/* Mobile-only styles (767px and below) */
/*@media (width <=767px) {
    .live-pill {
        padding-inline: 0;
    }
}*/

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--g);
    animation: pulsering2 1.8s infinite;
}

@keyframes pulsering2 {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

/* job rows */
.job-row {
    border: 1.5px solid var(--color-border);
    border-radius: 14px;
    padding: 24px 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.22s;
    position: relative;
    overflow: hidden;
}

.jobs-block__body > .job-row:nth-child(n+5) { 
    display: none; 
}

/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .job-row {
        flex-direction: column;
    }
    .job-body {
        text-align: center;
    }
}

.job-row::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-orange);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 3px;
}

.job-row.blue-row::after {
    background: var(--color-blue);
}

.job-row:hover {
    border-color: var(--color-orange);
    transform: translateX(4px);
}

.job-row.blue-row:hover {
    border-color: var(--color-blue);
    box-shadow: 0 4px 20px rgba(22, 115, 255, 0.12);
}

    .job-row:hover::after,
    .job-row.blue-row:hover::after {
        transform: scaleY(1);
    }

.job-row:last-of-type {
    margin-bottom: 0;
}

.job-ico-box {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    background: var(--obl);
}

.job-body {
    flex: 1;
    min-width: 0;
}

.job-name {
    font-size: 16px; 
    font-family: var(--font-inter-semibold);
    font-weight: var(--fw-semibold);
    color: var(--color-dark-knight);
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-company {
    font-size: 13px;
    font-family: var(--font-inter-medium); 
    color: var(--color-dark-knight);
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-location {
    font-size: 12px;
    color: var(--color-mid) !important; 
    margin-top: 2px;
}

.job-right__block {
    text-align: right;
    flex-shrink: 0;
}

.job-wage {
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold); 
    font-size: 15px; 
    color: var(--color-orange);
}

.job-type {
    display: inline-block;
    font-size: 10px;
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold);
    padding: 3px 9px;
    border-radius: 100px;
    margin-top: 4px;
}

.tag-b {
    background: var(--color-blue-light);
    color: var(--color-blue);
}

.tag-g {
    background: #f0fdf4;
    color: var(--g);
}

.tag-o {
    background: var(--color-orange-light);
    color: var(--color-orange);
}

.new-job__badge {
    position: absolute;
    top: 4px;
    right: 14px;
    font-size: 10px;
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    background: var(--color-orange);
    padding: 3px 9px;
    border-radius: 100px;
    animation: popIn 0.4s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
    from {
        transform: scale(0) rotate(-10deg);
    }

    to {
        transform: scale(1) rotate(0);
    }
}

.job-footer__btn {
    width: 100%;
    margin-top: 14px;
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold);
    font-size: 14px;
    color: var(--color-orange);
    background: var(--color-orange-light);
    border: 1.5px solid var(--color-orange-background);
    cursor: pointer;
    padding: 13px;
    border-radius: 12px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .job-footer__btn:hover {
        background: var(--color-orange-background);
    }

/* ── STATS BAND ── */
.stats-band__wrapper {
    background: var(--color-dark-knight);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    overflow: hidden;
}
/* Mobile-only styles (767px and below) */
@media (width <=1199px) {
    .stats-band__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width <=767px) {
    .stats-band__wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.stats-band__wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( ellipse 70% 100% at 50% 50%, rgba(255, 128, 17, 0.06) 0%, transparent 70% );
}

.stat-item {
    padding: 44px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 1;
    transition: background 0.3s;
}
/* Mobile-only styles (767px and below) */
@media (width <=1199px) {
    .stat-item {
        padding: 30px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
}

@media (width <=767px) {
    .stat-item {
        padding: 20px; 
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-archivo-black);
    font-weight: var(--fw-black);
    font-size: 44px;
    color: var(--color-orange);
    display: block;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-orange), var(--color-peech));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Mobile-only styles (767px and below) */
@media (width <=1199px) {
    .stat-number {
        font-size: 36px; 
    }
}

@media (width <=767px) {
    .stat-number {
        font-size: 28px;
    }
}

.stat-text {
    font-size: 13px;
    font-family: var(--font-inter-medium);
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-top: 8px;
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .stat-text {
        font-size: 10px;
    }
}

/* ── MEET WORKERS ── */
.workers-section {
    background: #111111;
    padding: 80px 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #fff;
}

    .workers-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 128, 17, .05) 0%, transparent 70%);
        pointer-events: none;
    }

.workers-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.workers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 40px;
}

.workers-header-left {
    flex: 1;
}

.workers-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--o);
    margin-bottom: 14px;
}

.workers-title {
    font-family: "Archivo-Black", sans-serif !important;
    font-size: clamp(28px, 3.5vw, 42px) !important;
    line-height: 1.06 !important; 
    letter-spacing: -0.024em !important; 
    color: #ffffff;
    margin-bottom: 14px;
}

    .workers-title .w-highlight {
        color: var(--o);
    }

.workers-description {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, .9) !important; 
    max-width: 500px;
}

.btn-browse-talent {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Inter-Regular", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: var(--o);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all .25s;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 6px;
    border: none;
    cursor: pointer;
}

    .btn-browse-talent:hover {
        background: var(--od);
    }

/* Stats mini-bar */
.workers-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
}

.wstat-item {
    text-align: center;
    padding: 20px 14px;
    border-right: 1px solid rgba(255, 255, 255, .07);
    transition: background .25s;
}

    .wstat-item:last-child {
        border-right: none;
    }

    .wstat-item:hover {
        background: rgba(255, 255, 255, .03);
    }

.wstat-icon {
    width: 24px;
    height: 24px;
    color: var(--o);
    margin: 0 auto 8px;
    display: block;
}

.wstat-number {
    font-family: "Archivo-Black", sans-serif;
    font-size: 18px;
    color: #ffffff;
    display: block;
}

.wstat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, .38);
    margin-top: 4px;
    display: block;
} 

/* Worker cards */
.workers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.worker-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    padding: 24px 20px;
    transition: border-color .25s, transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s;
    cursor: default;
}

    .worker-card:hover {
        border-color: var(--o);
        transform: translateY(-6px);
    } 

    .worker-card > div:first-child > div:first-child {
        width: calc(100% - 65px);
    }

.worker-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Archivo-Black", sans-serif;
    font-size: 16px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.av-blue {
    background: #0c2040;
    color: #5b9fd4;
}

.av-green {
    background: #0f2a14;
    color: #4ade80;
}

.av-purple {
    background: #1e1040;
    color: #c084fc;
}

.av-amber {
    background: #2a1a00;
    color: #fb923c;
}

.worker-name {
    font-family: "Archivo-Black", sans-serif; 
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 4px;
}

.worker-role {
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 12px;
}

.worker-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 16px;
}

    .worker-location svg {
        width: 13px;
        height: 13px;
        color: var(--o);
        flex-shrink: 0;
    }

.btn-available {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 128, 17, .35);
    color: var(--o);
    font-family: "Inter-Bold", sans-serif; 
    font-size: 11px;
    letter-spacing: 1px;
    padding: 9px 0;
    border-radius: 100px;
    text-align: center;
    transition: background .18s, color .18s, border-color .18s;
}

    .btn-available:hover {
        background: var(--o);
        color: #fff;
        border-color: var(--o);
    }

/* ── RESPONSIVE: workers section ── */
@media (max-width: 1024px) {
    .workers-section {
        padding: 72px 48px;
    }

    .workers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .workers-section {
        padding: 56px 24px;
    }

    .workers-header {
        flex-direction: column;
        gap: 20px;
    }

    .workers-description {
        max-width: 100%;
    }

    .workers-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .wstat-item:nth-child(2) {
        border-right: none;
    }

    .wstat-item:nth-child(3),
    .wstat-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.07);
    }

    .workers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .btn-browse-talent {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .workers-section {
        padding: 40px 16px;
    }

    .workers-grid {
        grid-template-columns: 1fr;
    }

    .workers-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── HOW IT WORKS ── */
.how-it__works-section--wrapper {
    background: var(--color-surface);
    padding: 104px 80px;
}
/* Tablet-only styles (768px <= width <=991px)  */
@media (768px <= width <=991px) {
    .how-it__works-section--wrapper {
        padding: 60px 30px;
    }
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .how-it__works-section--wrapper {
        padding: 40px 10px;
    }
}

.section-max {
    max-width: 1160px;
    margin: 0 auto;
}

.section-sub__title {
    display: inline-block;
    font-size: 11px;
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 14px;
}

.section-heading {
    font-family: var(--font-archivo-black) !important;
    font-weight: var(--fw-black) !important;
    font-size: clamp(32px, 3.5vw, 48px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.024em !important; 
    color: var(--color-dark-knight);
    margin-bottom: 14px;
}

.section-paragraph {
    font-size: 18px;
    line-height: 1.68;
    color: var(--color-mid) !important;
    max-width: 520px;
}

.how-it__works-header {
    margin-bottom: 64px;
}

.three-steps__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .three-steps__row {
        grid-template-columns: repeat(1, 1fr);
    }
}

.step-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
    cursor: default;
}

    .step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    }

    .step-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: linear-gradient( 135deg, transparent 60%, rgba(255, 128, 17, 0.04) 100% );
        opacity: 0;
        transition: opacity 0.3s;
    }

    .step-card:hover::before {
        opacity: 1;
    }

.step-bg__number {
    font-family: var(--font-archivo-black);
    font-weight: var(--fw-black);
    font-size: 100px;
    color: var(--color-light-white);
    position: absolute;
    bottom: -10px;
    right: 16px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.3s, transform 0.3s;
}

.step-card:hover .step-bg-num {
    color: var(--color-silver);
    transform: scale(1.05) rotate(-3deg);
}

.step-accent {
    height: 4px;
    width: 44px;
    border-radius: 2px;
    margin-bottom: 26px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover .step-accent {
    width: 80px;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-o {
    background: var(--color-orange-light);
}

.icon-b {
    background: var(--color-blue-light);
}

.step-title {
    font-family: var(--font-archivo-black);
    font-weight: var(--fw-black);
    font-size: 19px;
    color: var(--color-dark-knight);
    margin-bottom: 11px;
}

.step-description {
    font-size: 15px;
    line-height: 1.68;
    color: var(--color-mid) !important; 
}

/* ── TESTIMONIALS ── */
.testimonials-section__wrapper {
    background: var(--color-white);
    padding: 104px 80px;
}
/* Tablet-only styles (768px <= width <=991px)  */
@media (768px <= width <=991px) {
    .testimonials-section__wrapper {
        padding: 60px 30px;
    }
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .testimonials-section__wrapper {
        padding: 40px 10px;
    }
}

.testimonials-header {
    margin-bottom: 56px;
}

.testimonials-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .testimonials-blocks {
        grid-template-columns: repeat(1, 1fr);
    }
}

.testimonial-card {
    background: var(--color-dark-knight);
    border-radius: 22px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 28px 64px rgba(0, 0, 0, 0.22);
    }

    .testimonial-card::after {
        content: "C";
        font-family: var(--font-archivo-black);
        font-weight: var(--fw-black);
        font-size: 200px;
        color: rgba(255, 255, 255, 0.04);
        position: absolute;
        top: -30px;
        left: 12px;
        line-height: 1;
        pointer-events: none;
    }

.testimonial-card-lt {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

    .testimonial-card-lt:hover {
        box-shadow: 0 28px 64px rgba(0, 0, 0, 0.08);
    }

    .testimonial-card-lt::after {
        color: rgba(0, 0, 0, 0.04);
    }

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

    .testimonial-stars svg {
        width: 14px;
        height: 14px;
        fill: var(--color-orange);
    }


.testimonial-quote {
    font-size: 15px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 26px;
    font-family: var(--font-inter-medium);
    font-weight: var(--fw-medium);
    position: relative;
    z-index: 1;
}

.testimonial-big {
    grid-column: span 3; 
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .testimonial-big {
        grid-column: span 1;
    }
}

.testimonial-big .testimonial-quote {
    font-family: var(--font-archivo-black);
    font-weight: var(--fw-black);
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.35;
}

.testimonial-card-lt .testimonial-quote {
    color: var(--color-dark-knight);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.testimonial-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-archivo-black);
    font-weight: var(--fw-black);
    font-size: 15px;
    color: var(--color-white);
}

.testimonial-card-lt .testimonial-av {
    background: var(--color-orange);
}

.testimonial-name {
    font-size: 14px;
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold);
    color: var(--color-white);
}

.testimonial-card-lt .testimonial-name {
    color: var(--color-dark-knight);
}

.testimonial-biz {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.testimonial-card-lt .testimonial-biz {
    color: var(--color-muted);
}

.testimonial-rating {
    background: linear-gradient(145deg, var(--color-orange), var(--color-orange-accent));
    border-radius: 22px;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

    .testimonial-rating:hover {
        transform: translateY(-8px) scale(1.02);
    }

.testimonial-rnum {
    font-family: var(--font-archivo-black);
    font-weight: var(--fw-black);
    font-size: 64px;
    color: var(--color-white);
    line-height: 1;
}

.testimonial-rstars {
    display: flex;
    gap: 4px;
}

    .testimonial-rstars svg {
        width: 18px;
        height: 18px;
        fill: rgba(255, 255, 255, 0.9);
    }

.testimonial-rlbl {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-inter-semibold);
    font-weight: var(--fw-semibold);
}

/* ── TRUSTED ── */
.trusted-wrapper {
    padding: 52px 80px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
/* Tablet-only styles (768px <= width <=991px)  */
@media (768px <= width <=991px) {
    .trusted-wrapper {
        padding: 60px 30px;
    }
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .trusted-wrapper {
        padding: 40px 10px;
    }
}

.trusted-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .trusted-inner {
        flex-direction: column;
        gap: 0;
    }
}

.trusted-by__text {
    font-size: 11px;
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-gray);
    white-space: nowrap;
}

.trusted-brand__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-brand__logo {
    font-size: 14px;
    font-weight: var(--fw-bold);
    color: var(--color-divider);
    transition: color 0.2s;
    cursor: default;
}

.trusted-brand__logos .trusted-brand__logo:nth-child(5) > img {  
    width: 220px; 
}

.trusted-brand__logo:hover {
    color: var(--color-dim);
}

    .trusted-brand__logo img,
    .trusted-brand__logo svg {
        width: 150px;
        max-width: 100%;
        height: auto;
    }

/* ── CTA ── */
.signup-wrapper {
    background: var(--color-surface);
    padding: 104px 80px;
}
/* Tablet-only styles (768px <= width <=991px)  */
@media (768px <= width <=991px) {
    .signup-wrapper {
        padding: 60px 30px;
    }
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .signup-wrapper {
        padding: 40px 10px;
    }
}

.signup-card {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 28px;
    padding: 80px 88px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
/* Mini screens styles (1199px and below)  */
@media (width <=1199px) {
    .signup-card {
        padding: 40px 20px;
    }
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .signup-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.signup-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(255, 128, 17, 0.15) 0%, transparent 70% );
    pointer-events: none;
}

.signup-card::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 20%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(22, 115, 255, 0.1) 0%, transparent 70% );
    pointer-events: none;
}

.signup-card-inner {
    position: relative;
    z-index: 1;
}

.signup-heading {
    font-family: var(--font-archivo-black) !important;
    font-weight: var(--fw-black) !important;
    font-size: clamp(30px, 3.5vw, 46px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.022em !important; 
    color: var(--color-white);
    margin-bottom: 14px;
}

.signup-paragraph {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

.signup-right__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.signup-btn__cta {
    display: inline-block;
    font-family: var(--font-inter-bold);
    font-weight: var(--fw-bold);
    font-size: 16px;
    color: var(--color-dark-knight);
    background: var(--color-white);
    text-decoration: none;
    padding: 17px 38px;
    border-radius: 12px;
    transition: all 0.25s;
}

    .signup-btn__cta:hover {
        background: #eee; 
    }

.signup-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9); 
    text-align: center;
}

/* ── FOOTER ── */
.footer {
    background: var(--color-near-black);
    padding: 72px 80px 44px;
}
/* Mobile-only styles (767px and below) */
@media (width <=767px) {
    .footer {
        padding: 40px 10px;
    }
}

.footer-blocks {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
/* Mobile-only styles (640px and below) */
@media (width <=640px) {
    .footer-blocks {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 30px;
    }
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
    margin-top: 18px;
    max-width: 200px;
}

.footer-menu__heading {
    font-family: var(--font-archivo-black);
    font-weight: var(--fw-black);
    font-size: 13px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-menu__links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

    .footer-menu__links a {
        font-size: 14px;
        color: var(--color-text-alt);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-menu__links a:hover {
            color: var(--color-disabled);
        }

.footer .footer-bottom {
    max-width: 1160px;
    margin: 0 auto;
    border-top: 1px solid var(--color-border-dark);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}
/* Mobile-only styles (640px and below) */
@media (max-width: 640px) {
    .footer .footer-bottom {
        padding: 10px 10px 5px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-copy {
    font-size: 13px;
    color: var(--color-dark);
}

.footer-quick__links .quick-links {
    display: flex;
    gap: 24px;
}
/* Mobile-only styles (640px and below) */
@media (max-width: 640px) {
    .footer-quick__links .quick-links {
        margin-top: 16px;
    }
}

.footer-quick__links .quick-links a {
    font-size: 13px;
    color: var(--color-dark);
    text-decoration: none;
}

    .footer-quick__links .quick-links a:hover {
        color: var(--color-muted);
    }

/* ── MARQUEE BAND ── */
.marquee-wrapper {
    background: var(--color-orange);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.marquee-track-items {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
    gap: 0;
} 

    .marquee-track-items:hover {
        animation-play-state: paused;
    }

    .marquee-item {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        padding: 18px 40px;
        font-family: var(--font-archivo-black);
        font-size: 15px;
        font-weight: var(--fw-black);
        color: var(--color-white);
        letter-spacing: 0.5px;
        flex-shrink: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .marquee-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        flex-shrink: 0;
    }

    @keyframes marqueeScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

.mobile-flip-banner {
    display: none;
}

@media (max-width:640px) {

    #marquee {
        display: none; 
    }

    .mobile-flip-banner {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        background: var(--color-orange);
        perspective: 1000px;
        overflow: hidden;
    }

    .flip-card {
        width: 100%; 
        position: relative;
        display: inline-block;
        transform-style: preserve-3d;
        transform-origin: 50% 0;
    }

    .roleFrontText,
    .roleBackText {
        display: block;
        width: 100%; 
        color: #fff;
        font-family: var(--font-archivo-black);
        font-size: 18px; 
        font-weight: var(--fw-black);
        text-align: center;
        white-space: nowrap;
        backface-visibility: hidden;
    }

    .roleFrontText {
        position: relative;
        z-index: 2;
    }

    .roleBackText {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        transform: rotateX(-90deg);
        transform-origin: 50% 0;
    }

    .flip-card.flipping {
        transform: rotateX(90deg);
        transition: transform .45s ease;
    }
}



    /* ── TALENTHUT SISTER SECTION ── */
    .th-section {
        background: linear-gradient(160deg, #0a0a0a 0%, #111318 60%, #0e1420 100%);
        padding: 112px 80px;
        position: relative;
        overflow: hidden;
    }

        .th-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 55% 70% at 15% 50%, rgba(22, 115, 255, .09) 0%, transparent 65%), radial-gradient(ellipse 40% 60% at 85% 40%, rgba(34, 197, 94, .06) 0%, transparent 65%);
            pointer-events: none;
        }

        .th-section::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(22, 115, 255, .3) 30%, rgba(34, 197, 94, .3) 70%, transparent 100%);
        }

    .th-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .th-text .th-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #5b9dff;
        margin-bottom: 20px;
    }

    .th-eyebrow-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #5b9dff;
        animation: pulsering 2s infinite;
    }

    .th-h {
        font-family: var(--font-archivo-black) !important;
        font-weight: var(--fw-black) !important;
        font-size: clamp(32px, 3.5vw, 48px) !important;
        line-height: 1.06 !important;
        letter-spacing: -0.025em !important;
        color: #fff;
        margin-bottom: 18px;
    }

        .th-h .th-accent {
            background: linear-gradient(135deg, #5b9dff, #22c55e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    .th-p {
        font-size: 17px;
        line-height: 1.72;
        color: rgba(255, 255, 255, .9) !important;
        margin-bottom: 40px;
        max-width: 420px;
    }

    .th-pills {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .th-pill {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 12px;
        color: rgba(255, 255, 255, .9); 
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .1);
        padding: 7px 15px;
        border-radius: 100px;
    }

    .th-pill-ico {
        font-size: 14px;
    }

    .btn-th {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(135deg, #1673FF, #0d5edf);
        text-decoration: none;
        padding: 15px 30px;
        border-radius: 12px;
        transition: all .25s;
        position: relative;
        overflow: hidden;
    }

        .btn-th::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 50%);
            opacity: 0;
            transition: opacity .3s;
        }

        .btn-th:hover::before {
            opacity: 1;
        }

        .btn-th:hover {
            background: linear-gradient(135deg, #1466e0, #0c52c2);
        }

    .btn-th-arrow {
        transition: transform .25s;
    }

    .btn-th:hover .btn-th-arrow {
        transform: translateX(4px);
    }

    /* Card side */
    .th-card-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .th-card {
        background: #fff;
        border: none;
        border-radius: 28px;
        padding: 44px 44px 48px;
        text-align: center;
        width: 100%;
        max-width: 420px;
        position: relative;
        overflow: hidden;
        transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s;
        cursor: default;
        box-shadow: 0 8px 48px rgba(0, 0, 0, .28);
    }

        .th-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 32px 80px rgba(22, 115, 255, .25);
        }

        .th-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #1673FF, #22c55e);
            border-radius: 28px 28px 0 0;
        }

    .th-card-glow {
        display: none;
    }

    .th-logo-wrap {
        margin-bottom: 28px;
        position: relative;
        z-index: 1;
    }

        .th-logo-wrap img {
            width: 250px;
            max-width: 100%;
            height: auto;
            object-fit: contain;
            mix-blend-mode: normal;
        }

    .th-card-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(0, 0, 0, .35);
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .th-card-tagline {
        font-family: "Archivo Black", sans-serif;
        font-size: 20px;
        color: #111;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

.th-card-sub {
    font-size: 14px;
    color: var(--color-mid) !important; 
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

    .th-card-divider {
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #1673FF, #22c55e);
        border-radius: 2px;
        margin: 22px auto;
        transition: width .4s cubic-bezier(.16, 1, .3, 1);
    }

    .th-card:hover .th-card-divider {
        width: 80px;
    }

    @media (768px <= width <= 991px) {
        .th-section {
            padding: 60px 30px;
        }
    }

    @media (width <= 767px) {
        .th-section {
            padding: 40px 10px;
        }
    }

    /* Tablet-only styles (768px <= width <=991px)  */
    @media (768px <= width <=991px) {
        .th-inner {
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
    }
    /* Mobile-only styles (767px and below) */
    @media (width <=767px) {
        .th-inner {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    @media (max-width: 767px) {
        .new-home nav.navbar.header-snap-roles {
            padding: 0 20px 20px;
        }

        .hero-banner__wrapper {
            padding: 120px 20px 80px;
        }
    }

    @media (max-width: 500px) {
        .new-home nav.navbar.header-snap-roles {
            padding: 0 10px 20px;
        }
    }

@media (min-width: 1200px) {
    .new-home nav.navbar.header-snap-roles .flags-nav .nav-link {
        padding: 10px 15px;
        border: 1px solid rgba(255, 255, 255, 0.7);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
    }

    .new-home nav.navbar.header-snap-roles.sticky .flags-nav .nav-link {
        border: 1px solid rgba(0, 0, 0, 0.7);
    }
}