*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue1: #4f8ef7;
    --blue2: #7eb3ff;
    --accent: #5b8dee;
    --dark: #060b18;
    --dark2: #080d1f;
    --dark3: #0a1128;
    --dark4: #0d1530;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(79, 142, 247, 0.15);
    --text: #dce8ff;
    --muted: #6a85b8;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ── BACKGROUND CUSTOM ── */
.bg-custom.container {
    padding-right: 15px;
    padding-left: 15px;
    width: 70vw;
    transition: 1s all;
    border-radius: 100px;
}

.bg-custom {
    position: relative;
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    backdrop-filter: blur(20px) saturate(160%);
    background: rgba(25, 25, 25, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ── NAV ── */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6, 11, 24, 0.9);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(79, 142, 247, 0.12);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo .logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--blue1), #2d6af5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: #fff;
}

.nav-logo img {
    height: 52px;
}

.nav-logo span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    color: var(--muted);
    font-size: 0.875rem;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
    color: var(--blue1);
    background: rgba(79, 142, 247, 0.07);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue1), #2d6af5);
    color: #fff;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s, background 0.25s, color 0.25s;
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(79, 142, 247, 0.45);
    color: #fff;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(79, 142, 247, 0.3);
    border-radius: 8px;
    padding: 8px 10px;
    color: var(--text);
    cursor: pointer;
    font-size: 1rem;
}

/* ── HERO ── */
.hero {
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 110px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 70% at 50% -10%, rgba(25, 55, 185, 0.38) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 85% 100%, rgba(10, 30, 130, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 5% 90%, rgba(20, 50, 170, 0.18) 0%, transparent 70%);
}

.hero-glow {
    position: absolute;
    width: 660px;
    height: 660px;
    background: radial-gradient(circle, rgba(79, 142, 247, 0.16) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -55%);
    pointer-events: none;
    animation: pulse 7s ease-in-out infinite;
}

.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatOrb linear infinite;
}

.orb1 {
    width: 380px;
    height: 380px;
    top: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(50, 100, 230, 0.15), transparent 70%);
    animation-duration: 20s;
}

.orb2 {
    width: 260px;
    height: 260px;
    bottom: 40px;
    left: -60px;
    background: radial-gradient(circle, rgba(79, 142, 247, 0.1), transparent 70%);
    animation-duration: 16s;
    animation-direction: reverse;
}

.orb3 {
    width: 180px;
    height: 180px;
    top: 40%;
    right: 8%;
    background: radial-gradient(circle, rgba(100, 160, 255, 0.08), transparent 70%);
    animation-duration: 12s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-28px) scale(1.04);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -55%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -55%) scale(1.1);
        opacity: 0.7;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 142, 247, 0.1);
    border: 1px solid rgba(79, 142, 247, 0.3);
    border-radius: 100px;
    padding: 8px 22px;
    font-size: 12px;
    color: var(--blue2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
    position: relative;
    z-index: 1;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue1);
    box-shadow: 0 0 0 0 rgba(79, 142, 247, 0.6);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(79, 142, 247, 0.5);
    }

    60% {
        box-shadow: 0 0 0 6px rgba(79, 142, 247, 0);
    }
}

.question-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 142, 247, 0.1);
    border: 1px solid rgba(79, 142, 247, 0.3);
    border-radius: 100px;
    padding: 8px 22px;
    font-size: 12px;
    color: var(--blue2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeUp 0.6s ease both;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 800;
    line-height: 1.07;
    margin-bottom: 22px;
    animation: fadeUp 0.7s 0.1s ease both;
    position: relative;
    z-index: 1;
}

.gradient-text,
.hero h1 .gradient {
    background: linear-gradient(135deg, #4f8ef7, #7eb3ff, #a8c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--muted);
    max-width: 640px;
    line-height: 1.85;
    margin-bottom: 44px;
    font-weight: 300;
    animation: fadeUp 0.7s 0.2s ease both;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeUp 0.7s 0.28s ease both;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue1);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.badge-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 44px;
    animation: fadeUp 0.7s 0.28s ease both;
    position: relative;
    z-index: 1;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: rgba(79, 142, 247, 0.07);
    border: 1px solid rgba(79, 142, 247, 0.2);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--muted);
}

.badge-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue1);
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.7s 0.35s ease both;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue1), #2d6af5);
    color: #fff;
    padding: 16px 38px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 50px rgba(79, 142, 247, 0.35);
    transition: transform 0.25s, box-shadow 0.25s;
    animation: fadeUp 0.7s 0.35s ease both;
    position: relative;
    z-index: 1;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 70px rgba(79, 142, 247, 0.55);
    color: #fff;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue1), #2d6af5);
    color: #fff;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 50px rgba(79, 142, 247, 0.3);
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 70px rgba(79, 142, 247, 0.5);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--blue1);
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(79, 142, 247, 0.4);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(79, 142, 247, 0.1);
    border-color: rgba(79, 142, 247, 0.8);
    transform: translateY(-3px);
    color: var(--blue1);
}

.btn-primary-em {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue1), #2d6af5);
    color: #fff;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 0 50px rgba(79, 142, 247, 0.3);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    border: none;
}

.btn-primary-em:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 70px rgba(79, 142, 247, 0.5);
    color: #fff;
}

.btn-outline-em {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--blue1);
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(79, 142, 247, 0.4);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    cursor: pointer;
}

.btn-outline-em:hover {
    background: rgba(79, 142, 247, 0.1);
    border-color: rgba(79, 142, 247, 0.8);
    transform: translateY(-3px);
    color: var(--blue1);
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.1em;
    animation: fadeUp 1s 0.8s ease both;
    z-index: 1;
}

.scroll-dot {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(79, 142, 247, 0.35);
    border-radius: 11px;
    position: relative;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 7px;
    background: var(--blue1);
    border-radius: 4px;
    animation: scrollB 1.6s ease-in-out infinite;
}

@keyframes scrollB {

    0%,
    100% {
        top: 5px;
        opacity: 1;
    }

    80% {
        top: 17px;
        opacity: 0.3;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── TRUST STRIP ── */
.trust-strip {
    padding: 44px 24px;
    background: var(--dark3);
    text-align: center;
    border-top: 1px solid rgba(79, 142, 247, 0.1);
    border-bottom: 1px solid rgba(79, 142, 247, 0.1);
}

.trust-strip .inner {
    max-width: 900px;
    margin: 0 auto;
}

.trust-strip p {
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.trust-tag {
    padding: 8px 20px;
    border: 1px solid rgba(79, 142, 247, 0.18);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    background: rgba(79, 142, 247, 0.05);
    transition: border-color 0.3s, color 0.3s;
}

.trust-tag:hover {
    border-color: rgba(79, 142, 247, 0.5);
    color: var(--blue1);
}

/* ── SHARED ── */
section {
    position: relative;
    z-index: 1;
}

.divider,
.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 142, 247, 0.25), transparent);
}

.section-label {
    display: inline-block;
    color: var(--blue1);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title,
.section-title33 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 620px;
}

/* ── WHY WORK HERE / PERKS ── */
.why-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.why-section .inner {
    max-width: 1100px;
    margin: 0 auto;
}

.why-section .header {
    margin-bottom: 60px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.perk-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.perk-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 35, 120, 0.18) 0%, transparent 55%);
    pointer-events: none;
}

.perk-card:hover {
    border-color: rgba(79, 142, 247, 0.45);
    transform: translateY(-5px);
}

.perk-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(79, 142, 247, 0.1);
    border: 1px solid rgba(79, 142, 247, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--blue1);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.perk-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.perk-card p {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ── PROCESS ── */
.process-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.process-section .inner {
    max-width: 1100px;
    margin: 0 auto;
}

.process-section .header {
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 22px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    animation: fadeUp 0.6s ease both;
}

.step-card:hover {
    border-color: rgba(79, 142, 247, 0.5);
    transform: translateY(-6px);
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(79, 142, 247, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 40, 120, 0.15) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 22px;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(79, 142, 247, 0.2), rgba(126, 179, 255, 0.06));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(79, 142, 247, 0.12);
    border: 1px solid rgba(79, 142, 247, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--blue1);
    position: relative;
    z-index: 1;
}

.step-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(180deg, rgba(79, 142, 247, 0.5), rgba(79, 142, 247, 0.05));
    border-radius: 2px;
}

.proc-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 36px;
    position: relative;
}

.proc-num {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue1), #2d6af5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.3);
}

.proc-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px 28px;
    flex: 1;
    transition: border-color 0.3s;
}

.proc-content:hover {
    border-color: rgba(79, 142, 247, 0.4);
}

.proc-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.proc-content p {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.65;
    font-weight: 300;
}

/* ── OPEN POSITIONS ── */
.positions-section {
    padding: 100px 24px;
    background: var(--dark2);
}

.positions-section .inner {
    max-width: 900px;
    margin: 0 auto;
}

.positions-section .header {
    margin-bottom: 56px;
}

.position-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 22px;
    padding: 36px;
    margin-bottom: 20px;
    transition: border-color 0.35s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.position-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue1), #2d6af5);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s;
}

.position-card:hover {
    border-color: rgba(79, 142, 247, 0.5);
    transform: translateX(6px);
    box-shadow: -6px 0 40px rgba(79, 142, 247, 0.08);
}

.position-card:hover::before {
    opacity: 1;
}

.pos-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pos-title-wrap h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.pos-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pos-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 500;
    border: 1px solid;
    white-space: nowrap;
}

.tag-type {
    color: #7eb3ff;
    border-color: rgba(79, 142, 247, 0.3);
    background: rgba(79, 142, 247, 0.08);
}

.tag-location {
    color: #a0c4ff;
    border-color: rgba(120, 170, 255, 0.25);
    background: rgba(100, 150, 255, 0.06);
}

.tag-time {
    color: #f7c94f;
    border-color: rgba(247, 201, 79, 0.3);
    background: rgba(247, 201, 79, 0.07);
}

.tag-new {
    color: #4ff7a0;
    border-color: rgba(79, 247, 160, 0.3);
    background: rgba(79, 247, 160, 0.07);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: none;
    }

    50% {
        box-shadow: 0 0 10px rgba(79, 247, 160, 0.2);
    }
}

.pos-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue1), #2d6af5);
    color: #fff;
    padding: 12px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.2);
    transition: transform 0.25s, box-shadow 0.25s;
    white-space: nowrap;
}

.pos-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(79, 142, 247, 0.4);
    color: #fff;
}

.pos-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 20px;
}

.pos-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(79, 142, 247, 0.1);
}

.pos-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pos-detail-item .di-icon {
    color: var(--blue1);
    font-size: 0.85rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pos-detail-item .di-label {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.pos-detail-item .di-val {
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text);
}

.pos-skills {
    margin-top: 18px;
}

.pos-skills-label {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.skills-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-chip {
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    background: rgba(79, 142, 247, 0.07);
    border: 1px solid rgba(79, 142, 247, 0.18);
    color: var(--text);
}

/* ── FEATURES ── */
.features-strip {
    padding: 90px 24px;
    background: var(--dark2);
}

.features-strip .inner {
    max-width: 1100px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 54px;
}

.feat-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 28px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.feat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 35, 110, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.feat-item:hover {
    border-color: rgba(79, 142, 247, 0.42);
    transform: translateY(-4px);
}

.feat-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(79, 142, 247, 0.1);
    border: 1px solid rgba(79, 142, 247, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--blue1);
    position: relative;
    z-index: 1;
}

.feat-item h5 {
    font-size: 0.93rem;
    font-weight: 600;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.feat-item p {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.65;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ── CULTURE SECTION ── */
.culture-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}

.culture-section .inner {
    max-width: 1100px;
    margin: 0 auto;
}

.culture-section .header {
    margin-bottom: 60px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.culture-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.culture-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 35, 120, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.culture-card:hover {
    border-color: rgba(79, 142, 247, 0.42);
    transform: translateY(-5px);
}

.culture-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(79, 142, 247, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.culture-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.culture-card p {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ── SERVICES ── */
.services-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.services-section .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services-section .header {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 35, 120, 0.18) 0%, transparent 55%);
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(79, 142, 247, 0.45);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: rgba(79, 142, 247, 0.4);
    background: rgba(79, 142, 247, 0.05);
}

.svc-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(79, 142, 247, 0.1);
    border: 1px solid rgba(79, 142, 247, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--blue1);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(79, 247, 160, 0.07);
    border: 1px solid rgba(79, 247, 160, 0.3);
    color: #4ff7a0;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

/* ── PRODUCTS ── */
.products-section {
    padding: 100px 24px;
    background: var(--dark2);
}

.products-section .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.products-section .header {
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 22px;
    padding: 36px 32px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 35, 120, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.product-card:hover {
    border-color: rgba(79, 142, 247, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.prod-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(79, 142, 247, 0.15), rgba(45, 106, 245, 0.08));
    border: 1px solid rgba(79, 142, 247, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--blue1);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.product-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.product-card p {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.prod-clients {
    position: relative;
    z-index: 1;
}

.prod-clients-label {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.prod-client-chip {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 500;
    background: rgba(79, 142, 247, 0.07);
    border: 1px solid rgba(79, 142, 247, 0.18);
    color: var(--text);
    margin: 3px 3px 3px 0;
}

/* ── ABOUT ── */
.about-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}

.about-section .inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-section .header {
    margin-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 36px 32px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 35, 120, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.about-card:hover {
    border-color: rgba(79, 142, 247, 0.42);
    transform: translateY(-5px);
}

.about-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(79, 142, 247, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.about-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.about-card p {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ── CLIENTS ── */
.clients-section {
    padding: 80px 24px;
    background: var(--dark);
}

.clients-section .inner {
    max-width: 1100px;
    margin: 0 auto;
}

.clients-section .header {
    margin-bottom: 50px;
}

.clients-track-wrap {
    overflow: hidden;
    position: relative;
}

.clients-track-wrap::before,
.clients-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.clients-track-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}

.clients-track-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark), transparent);
}

.clients-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: scrollTrack 28s linear infinite;
}

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

@keyframes scrollTrack {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-logo {
    height: 56px;
    width: auto;
    filter: brightness(0) invert(-5);
    transition: opacity 0.3s;
}

.client-logo:hover {
    opacity: 0.75;
}

/* ── CONTACT ── */
.contact-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark3) 100%);
}

.contact-section .inner {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-section .header {
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrap {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 22px;
    padding: 40px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 7px;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(79, 142, 247, 0.06);
    border: 1px solid rgba(79, 142, 247, 0.2);
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.25s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(79, 142, 247, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(106, 133, 184, 0.5);
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--blue1), #2d6af5);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 0 40px rgba(79, 142, 247, 0.25);
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(79, 142, 247, 0.45);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 28px 24px;
    transition: border-color 0.3s, transform 0.3s;
}

.info-card:hover {
    border-color: rgba(79, 142, 247, 0.4);
    transform: translateX(5px);
}

.info-card h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row i {
    color: var(--blue1);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-row span {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.5;
    font-weight: 300;
}

.map-frame {
    border-radius: 18px;
    overflow: hidden;
    height: 220px;
    border: 1px solid var(--card-border);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ── CTA APPLY / CAREERS TEASER ── */
.cta-section,
.careers-teaser {
    padding: 120px 24px;
    text-align: center;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark3) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.careers-teaser::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(25, 65, 200, 0.18) 0%, transparent 70%);
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.cta-section::after,
.careers-teaser::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(79, 142, 247, 0.1) 0%, transparent 70%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.cta-section .inner,
.careers-teaser .inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h3,
.careers-teaser h3 {
    font-size: clamp(2rem, 5vw, 3.3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.cta-section p,
.careers-teaser p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
}

.cta-email-row,
.cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.open-roles-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.role-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    background: rgba(79, 142, 247, 0.07);
    border: 1px solid rgba(79, 142, 247, 0.2);
    color: var(--text);
}

.role-chip i {
    color: var(--blue1);
    font-size: 0.75rem;
}

/* ── APPLY MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(4, 8, 20, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    padding-top: 90px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    overflow-y: auto;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #0d1835;
    border: 1px solid rgba(79, 142, 247, 0.3);
    border-radius: 24px;
    padding: 44px;
    width: 100%;
    max-width: 540px;
    transform: translateY(30px);
    transition: transform 0.3s;
    position: relative;
}

.modal-content {
    max-height: calc(100vh - 48px);
    overflow-y: auto;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(79, 142, 247, 0.1);
    border: 1px solid rgba(79, 142, 247, 0.2);
    color: var(--muted);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-size: 0.9rem;
}

.modal-close:hover {
    background: rgba(79, 142, 247, 0.2);
    color: var(--blue1);
}

.modal-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.modal-box .modal-role {
    color: var(--blue1);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* ── FOOTER ── */
.page-footer {
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 0.8rem;
    border-top: 1px solid rgba(79, 142, 247, 0.1);
    background: var(--dark);
    text-align: center;
}

.footer-section {
    padding: 60px 0 0;
    background: var(--dark);
    border-top: 1px solid rgba(79, 142, 247, 0.1);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue1);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.footer-col p {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.7;
    font-weight: 300;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.87rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--blue1);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--muted);
    font-size: 0.83rem;
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--blue1);
    margin-top: 2px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(79, 142, 247, 0.08);
    border: 1px solid rgba(79, 142, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-icon:hover {
    background: rgba(79, 142, 247, 0.18);
    color: var(--blue1);
    border-color: rgba(79, 142, 247, 0.5);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.payment-icons img {
    filter: brightness(0) invert(-95);
    opacity: 0.45;
    transition: opacity 0.2s;
}

.payment-icons img:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(79, 142, 247, 0.1);
    padding: 20px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom span {
    color: var(--muted);
    font-size: 0.8rem;
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .top-nav {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(6, 11, 24, 0.97);
        padding: 16px 20px;
        gap: 4px;
        border-bottom: 1px solid rgba(79, 142, 247, 0.12);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:640px) {
    .pos-top {
        flex-direction: column;
    }

    .pos-apply-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .modal-box {
        padding: 30px 24px;
    }

    .process-steps::before {
        display: none;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
}