/* ==========================================================================
   ECOMMDOTS — CAREERS PAGE — DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-base: #ffffff;
    --bg-surface: #f8f9fa;
    --text-main: #0a0a0a;
    --text-inverse: #ffffff;
    --header-bg: #050505;
    --red: #d9232d;
    --red-dark: #b30000;
    --red-glow: rgba(230, 0, 0, 0.15);
    --gray-sub: #555555;
    --gray-light: #f2f2f2;
    --charcoal: #111111;
    --border-light: rgba(0,0,0,0.08);
    --font-display: 'Bebas Neue', sans-serif;
    --font-sans: 'Barlow', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gradient-primary: linear-gradient(135deg, #ff0044 0%, #cc0000 100%);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); line-height: 1.6; color: var(--text-main); background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { width: 90%; max-width: 1400px; margin: 0 auto; }
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ─── KEYFRAMES ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes livePulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2.5); opacity: 0; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes continuousSweep { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes marqueeLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes drawLine { from { width: 0; } to { width: 100%; } }
@keyframes glowPulse { 0%, 100% { box-shadow: 0 0 20px rgba(230,0,0,0.3); } 50% { box-shadow: 0 0 60px rgba(230,0,0,0.7); } }


/* ─── HEADER (STUDIO PLATINUM MONOLITH - PERMANENTLY PINNED) ─── */
.main-header {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    background: #0d0d0f; 
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 8px 16px 8px 24px; 
    z-index: 1000;
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.9), 
        0 0 0 1px rgba(255,255,255,0.1),
        0 0 60px rgba(217, 35, 45, 0.25);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ─── BRAND LOGO (PURE VECTOR INTEGRATION) ────────────────────────────── */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    cursor: pointer;
}

.brand-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px; 
    height: 50px;
    position: relative;
    will-change: transform;
}

.brand-icon-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

/* ─── HEADER BRAND TEXT (TALL CONDENSED MATCH) ────────────────────────────── */
.brand-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.1rem;
    letter-spacing: 0.02em;
    color: var(--text-inverse);
    line-height: 1;
    padding-top: 4px;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover .brand-icon-svg {
    transform: scale(1.08) rotate(4deg); 
    filter: brightness(1.15); 
}

.brand-logo:hover .brand-text {
    opacity: 0.95;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #a0a0a0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.nav-controls {
    display: flex;
    align-items: center;
}

/* ─── HEADER BUTTON (HIGH-CONTRAST & KINETIC ENGINE) ───────────── */
.btn-audit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background: #ffffff; 
    border: 1px solid #ffffff; 
    border-radius: 100px;
    color: #111111; 
    font-family: var(--font-sans);
    font-size: 11px; 
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-audit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary); 
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-audit:hover {
    border-color: transparent;
    color: #ffffff; 
    box-shadow: 0 12px 30px rgba(217, 35, 45, 0.35);
    transform: translateY(-2px);
    padding-left: 32px; 
    padding-right: 24px;
}

.btn-audit:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* ─── DROPDOWN NAVIGATION ───────────── */
.nav-has-dropdown {
    position: relative;
    perspective: 1200px; 
}

.nav-drop-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-drop-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.3s ease;
}

.nav-has-dropdown:hover .nav-drop-trigger svg {
    transform: rotate(180deg);
    stroke: var(--red);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    padding-top: 32px; 
    transform: translateX(-50%) translateY(20px) rotateX(-10deg);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) rotateX(0deg);
}

.nav-dropdown-inner {
    background: #0d0d0f; 
    border: 1px solid rgba(255, 255, 255, 0.12); 
    border-radius: 12px;
    padding: 16px; 
    min-width: 320px; 
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.8), 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 40px rgba(217, 35, 45, 0.15); 
    position: relative;
    overflow: hidden;
}

.nav-dropdown-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-primary);
}

.nav-links .nav-drop-item {
    display: flex;
    flex-direction: column;
    padding: 18px 24px; 
    border-radius: 8px;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links .nav-drop-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0; 
}

.nav-links .nav-drop-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links .nav-drop-item:hover {
    background: rgba(255, 255, 255, 0.03); 
    padding-left: 32px; 
    border-radius: 8px;
    border-bottom-color: transparent;
}

.nav-links .nav-drop-item:hover::before {
    transform: scaleY(1);
}

.nd-title {
    font-family: var(--font-sans);
    font-size: 14px; 
    font-weight: 700; 
    color: #ffffff; 
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.nav-links .nav-drop-item:hover .nd-title {
    color: var(--red);
}

.nd-sub {
    font-family: var(--font-sans);
    font-size: 14.5px; 
    color: rgba(255, 255, 255, 0.6); 
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.nav-links .nav-drop-item:hover .nd-sub {
    color: #ffffff; 
}

.nav-dropdown-inner.mega-menu {
    min-width: 720px; 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; 
    padding: 20px;
}

.nav-dropdown-inner.mega-menu .nav-drop-item {
    border-bottom: none !important; 
    padding: 16px 20px;
}

.nav-dropdown-inner.mega-menu .nav-drop-item:hover {
    padding-left: 28px;
}

/* ─── HAMBURGER BUTTON & MOBILE NAV OVERLAY ─── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1100;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(1px, -1px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(1px, 1px); }

.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.98);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 80px 48px 48px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}
.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 400px;
}
.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 56px);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
    text-align: center;
    display: block;
    width: 100%;
    padding: 12px 0;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.3s;
}
.mobile-nav-links a:hover { color: #ffffff; }
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-cta { margin-top: 48px; }
.mobile-nav-cta .btn-audit { font-size: 12px; padding: 14px 32px; }

@media(max-width:1024px){
    .nav-links, .nav-controls .btn-audit { display: none; }
    .hamburger { display: flex; }
}
@media(max-width:768px){
    .main-header { top: 12px; width: 94%; padding: 10px 16px; }
    .brand-text { font-size: 1.6rem; }
    .brand-icon-wrap { width: 40px; height: 40px; }
}
@media(max-width: 480px) {
    .main-header { top: 10px; width: 96%; padding: 8px 14px; }
    .brand-text { font-size: 1.4rem; }
}

/* ════════════════════════════════════════════════════════
   MILLION DOLLAR CALENDLY OVERRIDE (STEALTH MODE)
════════════════════════════════════════════════════════ */

/* 1. The Backdrop: Swap cheap solid black for an Obsidian Glass Blur */
.calendly-overlay {
    background-color: rgba(5, 5, 5, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

/* 2. The Modal Container: Round the edges, add glass border, give it breathing room */
.calendly-popup {
    border-radius: 16px !important;
    overflow: hidden !important;
    /* Massive studio shadow and a crisp 1px hairline border */
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    height: 720px !important; /* Force a taller height so it rarely needs to scroll internally */
    max-height: 90vh !important;
}

/* 3. THE SCROLLBAR ASSASSIN: Nuke the ugly default tracks completely */
.calendly-overlay,
.calendly-popup,
.calendly-popup-content {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
}

.calendly-overlay::-webkit-scrollbar,
.calendly-popup::-webkit-scrollbar,
.calendly-popup-content::-webkit-scrollbar {
    display: none !important; /* Chrome/Safari */
}

/* 4. The Close Button: Add a premium kinetic hover state */
.calendly-close-overlay {
    color: #ffffff !important;
    opacity: 0.5 !important;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.calendly-close-overlay:hover {
    opacity: 1 !important;
    transform: scale(1.15) !important;
}

/* ─── SECTION EYEBROW ─── */
.section-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-eyebrow .ey-line { width: 30px; height: 2px; background: var(--red); }
.section-eyebrow .ey-text { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }

/* ─── BLOG HERO EYEBROW (for dark sections) ─── */
.blog-hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.eyebrow-line { width: 30px; height: 2px; background-color: var(--red); }
.live-dot-wrap { display: flex; align-items: center; gap: 8px; }
.live-dot { width: 8px; height: 8px; background-color: var(--red); border-radius: 50%; position: relative; }
.live-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background-color: var(--red); animation: livePulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.live-dot-text { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; color: var(--red); text-transform: uppercase; }

/* ══════════════════════════════════════════════════════
   HERO SECTION — CAREERS
══════════════════════════════════════════════════════ */
.careers-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #050505;
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 80px;
}

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

/* Diagonal grid lines */
.careers-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Radial red ambient glow */
.careers-hero-bg::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(217,35,45,0.12) 0%, transparent 65%);
}

.careers-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.careers-hero-content {}

.careers-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.careers-hero-eyebrow .ey-line { width: 30px; height: 2px; background: var(--red); }
.careers-hero-eyebrow .ey-text { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }

.careers-hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(64px, 8vw, 128px);
    color: #fff;
    line-height: 0.88;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}

.careers-hero-h1 span { color: var(--red); }

.careers-hero-sub {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 48px;
    border-left: 2px solid rgba(255,56,70,0.6);
    padding-left: 24px;
}

/* ══════════════════════════════════════════════════════
   HERO CTAs (STRUCTURALLY LOCKED & RESPONSIVE)
══════════════════════════════════════════════════════ */
.careers-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center; /* Locks vertical alignment */
}

/* 1. SHARED FOUNDATION: Guarantees 100% exact dimensions for both buttons */
.btn-hero-primary,
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px; /* Explicit height instead of padding fixes misalignment */
    padding: 0 40px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 4px;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    text-decoration: none;
}

/* 2. PRIMARY BUTTON SPECIFICS */
.btn-hero-primary {
    background: var(--red);
    color: #fff;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(217, 35, 45, 0.3);
}

.btn-hero-primary svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
    position: relative;
    z-index: 1;
}

.btn-hero-primary span {
    position: relative;
    z-index: 1;
}

.btn-hero-primary::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: var(--red-dark); 
    transform: translateX(-101%); 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}

.btn-hero-primary:hover::before { transform: translateX(0); }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(217, 35, 45, 0.4); }

/* 3. OUTLINE BUTTON SPECIFICS */
.btn-hero-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-outline:hover { 
    border-color: #fff; 
    color: #fff; 
    background: rgba(255, 255, 255, 0.06); 
    transform: translateY(-3px); 
}

/* ══════════════════════════════════════════════════════
   MOBILE & TABLET BREAKPOINTS
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Tablet: Shrink slightly but keep side-by-side */
    .btn-hero-primary,
    .btn-hero-outline {
        height: 50px;
        padding: 0 32px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    /* Mobile: Stack them into sleek, full-width blocks */
    .careers-hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%; /* Force full width */
        height: 52px;
        padding: 0 20px;
    }
}
/* Hero Visual: Stats Card */
.careers-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-stats-card {
    background: rgba(18,18,22,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 48px;
    max-width: 420px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    animation: floatY 6s ease-in-out infinite;
}

.hero-stats-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-primary);
}

.hero-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(40px, 4vw, 56px);
    color: #fff;
    line-height: 0.9;
}
.hero-stat-num span { color: var(--red); }

.hero-stat-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555;
}

.hero-card-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 32px;
}

.hero-card-culture {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-card-culture-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hc-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(217,35,45,0.12);
    border: 1px solid rgba(217,35,45,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hc-icon svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 2; }

.hc-text {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════
   SECTION DIVIDERS
═══════════════════════════════════ */
.divider-dark-to-light { display: block; line-height: 0; background: #050505; }
.divider-dark-to-light svg { display: block; width: 100%; height: 80px; }
.divider-light-to-dark { display: block; line-height: 0; background: #f5f5f5; }
.divider-light-to-dark svg { display: block; width: 100%; height: 80px; }
.divider-white-to-dark { display: block; line-height: 0; background: #fff; }
.divider-white-to-dark svg { display: block; width: 100%; height: 80px; }
.divider-dark-to-white { display: block; line-height: 0; background: #0a0a0a; }
.divider-dark-to-white svg { display: block; width: 100%; height: 80px; }
.divider-charcoal-to-white { display: block; line-height: 0; background: #111; }
.divider-charcoal-to-white svg { display: block; width: 100%; height: 80px; }

/* ══════════════════════════════════════════════════════
   ABOUT SECTION — Working Here
══════════════════════════════════════════════════════ */
.about-working {
    background: #f5f5f5;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.about-working-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-working-content {}

.about-working-h2 {
    font-family: var(--font-display);
    font-size: clamp(52px, 5.5vw, 88px);
    color: var(--charcoal);
    line-height: 0.88;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}
.about-working-h2 .red { color: var(--red); }

.about-working-desc {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    color: #444;
    line-height: 1.8;
    margin-bottom: 48px;
}

.about-working-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pillar-item:hover {
    border-color: rgba(217,35,45,0.2);
    box-shadow: 0 12px 32px rgba(217,35,45,0.08);
    transform: translateX(4px);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(217,35,45,0.08);
    border: 1px solid rgba(217,35,45,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.pillar-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.pillar-body {}
.pillar-title {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}
.pillar-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: #777;
    line-height: 1.6;
}

/* Right side visual */
.about-working-visual {
    position: relative;
}

.aw-glass-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.aw-card-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(135deg, #0d0d0f 0%, #111 100%);
    position: relative;
}

.aw-card-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--gradient-primary);
}

.aw-card-title {
    font-family: var(--font-display);
    font-size: 32px;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.aw-card-sub {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #555;
}

.aw-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
}

.aw-stat-cell {
    padding: 32px;
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s ease;
}
.aw-stat-cell:hover { background: rgba(217,35,45,0.04); }
.aw-stat-cell:nth-child(even) { border-right: none; }
.aw-stat-cell:nth-child(3), .aw-stat-cell:nth-child(4) { border-bottom: none; }

.aw-stat-num {
    font-family: var(--font-display);
    font-size: 48px;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 8px;
}
.aw-stat-num span { color: var(--red); }
.aw-stat-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555;
}

.aw-float-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--red);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(217,35,45,0.4);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 5;
}
.aw-badge-num { font-family: var(--font-display); font-size: 32px; line-height: 0.9; }
.aw-badge-label { font-family: var(--font-sans); font-size: 10px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px; }

/* ══════════════════════════════════════════════════════
   OPEN POSITIONS SECTION
══════════════════════════════════════════════════════ */
.positions-section {
    background: #fff;
    padding: 140px 0;
    position: relative;
}

.positions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.positions-header-left {}

.positions-h2 {
    font-family: var(--font-display);
    font-size: clamp(52px, 5.5vw, 88px);
    color: var(--charcoal);
    line-height: 0.88;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.positions-h2 .red { color: var(--red); }

.positions-sub {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #777;
    max-width: 500px;
}

/* Filter tabs */
.positions-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.pos-filter {
    background: #f2f2f2;
    border: 1px solid transparent;
    color: #555;
    padding: 10px 24px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.pos-filter:hover { border-color: var(--red); color: var(--red); background: #fff; }
.pos-filter.active { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(217,35,45,0.3); }

/* Job grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* UPDATE THESE EXISTING CLASSES */
.job-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    cursor: pointer; /* Makes the whole card feel clickable */
}

.job-desc {
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 28px;
    
    /* ENFORCED HEIGHT & TRUNCATION */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limits description to 3 perfect lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ADD THIS NEW BLOCK ANYWHERE IN CSS */
/* ══════════════════════════════════════════════════════
   JOB DETAIL MODAL (STEALTH GLASSMORPHISM)
══════════════════════════════════════════════════════ */
.job-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(8px);
    z-index: 4500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.job-modal-overlay.open { opacity: 1; pointer-events: auto; }

.job-modal-panel {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 50px 100px rgba(0,0,0,0.6);
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.job-modal-overlay.open .job-modal-panel { transform: scale(1) translateY(0); }
.job-modal-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary);
    z-index: 10;
}

.job-modal-header {
    padding: 40px 48px 24px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.job-modal-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}
.job-modal-close:hover { background: rgba(217,35,45,0.1); }
.job-modal-close svg { width: 18px; height: 18px; stroke: #333; fill: none; stroke-width: 2.5; transition: stroke 0.3s; }
.job-modal-close:hover svg { stroke: var(--red); }

.job-modal-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); color: var(--charcoal); line-height: 0.95; margin-bottom: 16px; }
.job-modal-tags { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.job-modal-meta { display: flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 14px; color: #666; font-weight: 600; }
.job-modal-meta svg { width: 16px; height: 16px; stroke: #aaa; fill: none; stroke-width: 2; }

.job-modal-body {
    padding: 32px 48px 40px;
    overflow-y: auto;
    flex: 1;
    font-family: var(--font-sans);
    font-size: 15.5px;
    color: #444;
    line-height: 1.8;
    scrollbar-width: thin;
    scrollbar-color: rgba(217,35,45,0.3) transparent;
}
.job-modal-body::-webkit-scrollbar { width: 6px; }
.job-modal-body::-webkit-scrollbar-thumb { background: rgba(217,35,45,0.3); border-radius: 3px; }

.job-modal-footer {
    padding: 24px 48px;
    background: #fafafa;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .job-modal-header { padding: 32px 24px 20px; }
    .job-modal-body { padding: 24px 24px 32px; }
    .job-modal-footer { padding: 20px 24px; flex-direction: column; gap: 16px; text-align: center; }
    .job-modal-close { top: 16px; right: 16px; }
}
.job-card.visible { animation: slideUp 0.6s cubic-bezier(0.16,1,0.3,1) forwards; }
.job-card:nth-child(2).visible { animation-delay: 0.08s; }
.job-card:nth-child(3).visible { animation-delay: 0.16s; }
.job-card:nth-child(4).visible { animation-delay: 0.24s; }
.job-card:nth-child(5).visible { animation-delay: 0.32s; }
.job-card:nth-child(6).visible { animation-delay: 0.4s; }

.job-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.job-card:hover::before { transform: scaleX(1); }
.job-card:hover {
    border-color: rgba(217,35,45,0.15);
    box-shadow: 0 24px 60px rgba(217,35,45,0.1);
    transform: translateY(-6px);
}

.job-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-dept-badge {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(217,35,45,0.08);
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(217,35,45,0.15);
}

.job-type-badge {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555;
    background: #f2f2f2;
    padding: 5px 12px;
    border-radius: 100px;
}

.job-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.2vw, 32px);
    color: var(--charcoal);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}
.job-card:hover .job-title { color: var(--red); }

.job-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.job-meta svg { width: 14px; height: 14px; stroke: #aaa; fill: none; stroke-width: 2; flex-shrink: 0; }
.job-location {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.05em;
}



.job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--charcoal);
    color: #fff;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}
.btn-apply::before { content: ''; position: absolute; inset: 0; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.btn-apply:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-apply:hover { box-shadow: 0 10px 24px rgba(217,35,45,0.3); transform: translateY(-2px); }
.btn-apply span, .btn-apply svg { position: relative; z-index: 1; }
.btn-apply svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.btn-apply:hover svg { transform: translateX(4px); }

.job-date {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    color: #bbb;
    letter-spacing: 0.05em;
}

/* Empty state */
.jobs-empty {
    grid-column: span 3;
    text-align: center;
    padding: 80px 40px;
    background: #f8f8f8;
    border-radius: 16px;
    border: 2px dashed rgba(0,0,0,0.1);
}
.jobs-empty-icon { width: 64px; height: 64px; margin: 0 auto 24px; background: rgba(217,35,45,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.jobs-empty-icon svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 2; }
.jobs-empty h3 { font-family: var(--font-display); font-size: 32px; color: #ccc; letter-spacing: 0.04em; margin-bottom: 12px; }
.jobs-empty p { font-family: var(--font-sans); font-size: 15px; color: #bbb; }

/* ══════════════════════════════════════════════════════
   BENEFITS SECTION
══════════════════════════════════════════════════════ */
.benefits-section {
    background: #050505;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(217,35,45,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-h2 {
    font-family: var(--font-display);
    font-size: clamp(52px, 5.5vw, 88px);
    color: #fff;
    line-height: 0.88;
    letter-spacing: 0.02em;
    margin-top: 16px;
}
.benefits-h2 .red { color: var(--red); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 40px 36px;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
    opacity: 0;
}
.benefit-card.visible { animation: slideUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards; }
.benefit-card:nth-child(2).visible { animation-delay: 0.1s; }
.benefit-card:nth-child(3).visible { animation-delay: 0.2s; }
.benefit-card:nth-child(4).visible { animation-delay: 0.3s; }
.benefit-card:nth-child(5).visible { animation-delay: 0.4s; }
.benefit-card:nth-child(6).visible { animation-delay: 0.5s; }

.benefit-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(217,35,45,0.25);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(217,35,45,0.15);
}

.benefit-card-inner-glow {
    position: absolute;
    top: -60px; left: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(217,35,45,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.benefit-card:hover .benefit-card-inner-glow { opacity: 1; }

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(217,35,45,0.1);
    border: 1px solid rgba(217,35,45,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s ease;
}
.benefit-card:hover .benefit-icon { background: rgba(217,35,45,0.2); box-shadow: 0 8px 24px rgba(217,35,45,0.2); }
.benefit-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.benefit-title {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}
.benefit-card:hover .benefit-title { color: #fff; }

.benefit-desc {
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   WORKFLOW / APPLICATION PROCESS
══════════════════════════════════════════════════════ */
.workflow-section {
    background: #f5f5f5;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.workflow-header {
    text-align: center;
    margin-bottom: 80px;
}

.workflow-h2 {
    font-family: var(--font-display);
    font-size: clamp(52px, 5.5vw, 88px);
    color: var(--charcoal);
    line-height: 0.88;
    letter-spacing: 0.02em;
    margin-top: 16px;
}
.workflow-h2 .red { color: var(--red); }

.workflow-sub {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #777;
    margin-top: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting line */
.workflow-steps::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--red), rgba(217,35,45,0.2));
    z-index: 0;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    opacity: 0;
}
.workflow-step.visible { animation: slideUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards; }
.workflow-step:nth-child(2).visible { animation-delay: 0.15s; }
.workflow-step:nth-child(3).visible { animation-delay: 0.3s; }
.workflow-step:nth-child(4).visible { animation-delay: 0.45s; }

.step-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(217,35,45,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.workflow-step:hover .step-icon-wrap { background: var(--red); border-color: var(--red); box-shadow: 0 16px 40px rgba(217,35,45,0.3); transform: scale(1.1); }
.step-icon-wrap svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s ease; }
.workflow-step:hover .step-icon-wrap svg { stroke: #fff; }

.step-num {
    position: absolute;
    top: -8px; right: -8px;
    width: 24px; height: 24px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.step-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.step-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #888;
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════ */
.faq-section {
    background: #0a0a0a;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.faq-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 100px;
    align-items: flex-start;
}

.faq-sidebar {}

.faq-sidebar-label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-sidebar-label::before { content: ''; width: 30px; height: 2px; background: var(--red); }

.faq-h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    color: #fff;
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}
.faq-h2 .red { color: var(--red); }

.faq-sidebar-desc {
    font-family: var(--font-sans);
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.faq-contact-link:hover { color: var(--red); border-color: var(--red); }
.faq-contact-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.3s ease; }
.faq-contact-link:hover svg { transform: translateX(4px); }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-q-text {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    transition: color 0.3s ease;
}
.faq-item.open .faq-q-text { color: #fff; }

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-toggle { background: var(--red); border-color: var(--red); transform: rotate(45deg); }
.faq-toggle svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2.5; transition: stroke 0.3s ease; }
.faq-item.open .faq-toggle svg { stroke: #fff; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
    padding: 0 0 28px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
}

/* ══════════════════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════════════════ */
.careers-cta-strip {
    background: linear-gradient(135deg, #a00000 0%, #cc0000 40%, #e60000 70%, #ff2200 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.careers-cta-strip::before { content: ''; position: absolute; top: -100px; left: -100px; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.careers-cta-strip::after { content: ''; position: absolute; bottom: -150px; right: -150px; width: 700px; height: 700px; border-radius: 50%; background: rgba(0,0,0,0.1); }
.cta-strip-inner { position: relative; z-index: 2; }
.cta-strip-inner h2 { font-family: var(--font-display); font-size: clamp(50px, 6vw, 96px); color: #fff; letter-spacing: 0.02em; line-height: 0.9; margin-bottom: 24px; }
.cta-strip-inner p { font-family: var(--font-sans); font-size: 18px; color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 48px; line-height: 1.75; }
.cta-strip-btn { display: inline-block; background: #fff; color: var(--red); padding: 20px 48px; font-family: var(--font-sans); font-size: 13px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; border-radius: 4px; transition: all 0.3s ease; }
.cta-strip-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer { background: #030303; padding: 120px 0 0; position: relative; overflow: hidden; }
.footer-glow { position: absolute; top: -300px; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(circle, rgba(217,35,45,0.08) 0%, transparent 70%); pointer-events: none; z-index: 0; }
.relative-z { position: relative; z-index: 2; }
.footer-grid-premium { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 80px; margin-bottom: 80px; }
.footer-desc { font-family: var(--font-sans); font-size: 15.5px; color: #8A8A93; line-height: 1.85; max-width: 320px; }
.footer-col-title { font-family: var(--font-sans); font-size: 11px; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; color: #fff; margin-bottom: 32px; }
.footer-links { display: flex; flex-direction: column; gap: 16px; }
.footer-links a { font-family: var(--font-sans); font-size: 15px; font-weight: 500; color: #A1A1AA; text-decoration: none; display: inline-flex; width: max-content; position: relative; transition: color 0.4s cubic-bezier(0.16,1,0.3,1); }
.footer-links a span { position: relative; padding-bottom: 4px; }
.footer-links a span::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.footer-links a:hover { color: #fff; }
.footer-links a:hover span::after { transform: scaleX(1); transform-origin: left; }
.footer-locations { display: flex; flex-direction: column; gap: 20px; }
.loc-item { display: flex; flex-direction: column; }
.loc-item strong { font-family: var(--font-sans); font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 0.05em; }
.loc-item span { font-family: var(--font-sans); font-size: 14px; color: #8A8A93; margin-top: 2px; }
.loc-link { font-family: var(--font-sans); font-size: 14px; color: #8A8A93; text-decoration: none; position: relative; width: max-content; transition: color 0.4s ease; }
.loc-link:hover { color: #fff; }
.footer-giant-text { font-family: var(--font-display); font-size: clamp(80px, 14.5vw, 240px); font-weight: 800; line-height: 0.8; letter-spacing: 0.02em; text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.06); user-select: none; pointer-events: none; width: 100%; margin: 40px 0 0; transform: translateY(20px); }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.06); position: relative; z-index: 10; background: #030303; }
.fb-copy-wrap { display: flex; align-items: center; gap: 16px; }
.fb-copy { font-family: var(--font-sans); font-size: 13px; color: #71717A; }
.fb-watermark { display: flex; align-items: center; gap: 6px; font-family: var(--font-sans); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.15em; padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.1); }
.wm-text { color: #555; }
.wm-link { color: #8A8A93; font-weight: 800; text-decoration: none; transition: color 0.4s ease; }
.wm-link:hover { color: #fff; }
.fb-legal { display: flex; gap: 32px; }
.fb-legal a { font-family: var(--font-sans); font-size: 13px; color: #71717A; text-decoration: none; transition: color 0.3s ease; }
.fb-legal a:hover { color: #fff; }
.fb-socials { display: flex; gap: 12px; }
.fb-social-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); background: transparent; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); color: #A1A1AA; }
.fb-social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.fb-social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-4px); }

/* ══════════════════════════════════════════════════════
   ADMIN PANEL MODAL
══════════════════════════════════════════════════════ */
.admin-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    box-shadow: 0 8px 32px rgba(217,35,45,0.5);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    animation: glowPulse 3s ease-in-out infinite;
}
.admin-fab:hover { transform: scale(1.1) rotate(15deg); box-shadow: 0 16px 48px rgba(217,35,45,0.6); }
.admin-fab svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2.5; }
.admin-fab-label { position: absolute; right: 70px; background: #111; color: #fff; font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 4px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.admin-fab:hover .admin-fab-label { opacity: 1; }

/* Admin overlay */
.admin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(8px);
    z-index: 5001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.admin-overlay.open { opacity: 1; pointer-events: auto; }

.admin-panel {
    background: #0d0d0f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.admin-overlay.open .admin-panel { transform: scale(1) translateY(0); }
.admin-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); }

.admin-header {
    padding: 28px 36px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.admin-title { font-family: var(--font-display); font-size: 28px; color: #fff; letter-spacing: 0.04em; }
.admin-subtitle { font-family: var(--font-sans); font-size: 13px; color: #555; margin-top: 2px; }
.admin-close { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.admin-close:hover { background: rgba(217,35,45,0.2); border-color: rgba(217,35,45,0.3); }
.admin-close svg { width: 18px; height: 18px; stroke: #aaa; fill: none; stroke-width: 2.5; transition: stroke 0.3s ease; }
.admin-close:hover svg { stroke: var(--red); }

.admin-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px 36px;
    scrollbar-width: thin;
    scrollbar-color: rgba(217,35,45,0.3) transparent;
}
.admin-body::-webkit-scrollbar { width: 4px; }
.admin-body::-webkit-scrollbar-thumb { background: rgba(217,35,45,0.3); border-radius: 2px; }

/* Add new job button */
.admin-add-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(217,35,45,0.1);
    border: 1px dashed rgba(217,35,45,0.4);
    border-radius: 12px;
    padding: 18px 24px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
}
.admin-add-btn:hover { background: rgba(217,35,45,0.15); border-color: var(--red); }
.admin-add-btn svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2.5; }

/* Job list in admin */
.admin-job-list { display: flex; flex-direction: column; gap: 12px; }

.admin-job-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}
.admin-job-item:hover { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); }

.admin-job-drag {
    color: #333;
    cursor: grab;
    flex-shrink: 0;
    padding: 4px;
}
.admin-job-drag:active { cursor: grabbing; }
.admin-job-drag svg { width: 16px; height: 16px; stroke: #444; fill: none; stroke-width: 2; }

.admin-job-info { flex: 1; min-width: 0; }
.admin-job-title { font-family: var(--font-sans); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-job-meta { font-family: var(--font-sans); font-size: 12px; color: #555; }

.admin-job-toggle {
    position: relative;
    flex-shrink: 0;
}
.toggle-switch {
    appearance: none;
    width: 44px;
    height: 24px;
    background: #222;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    outline: none;
}
.toggle-switch::before { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #555; transition: all 0.3s ease; }
.toggle-switch:checked { background: rgba(217,35,45,0.3); border-color: var(--red); }
.toggle-switch:checked::before { left: 23px; background: var(--red); }

.admin-job-actions { display: flex; gap: 8px; flex-shrink: 0; }

.admin-btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.admin-btn-icon svg { width: 15px; height: 15px; stroke: #555; fill: none; stroke-width: 2; transition: stroke 0.3s ease; }
.admin-btn-icon.edit:hover { background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.4); }
.admin-btn-icon.edit:hover svg { stroke: #3b82f6; }
.admin-btn-icon.delete:hover { background: rgba(217,35,45,0.15); border-color: rgba(217,35,45,0.4); }
.admin-btn-icon.delete:hover svg { stroke: var(--red); }

/* Edit form modal */
.edit-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.9);
    backdrop-filter: blur(10px);
    z-index: 6000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.edit-form-overlay.open { opacity: 1; pointer-events: auto; }

.edit-form-panel {
    background: #0d0d0f;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    scrollbar-width: thin;
    scrollbar-color: rgba(217,35,45,0.3) transparent;
}
.edit-form-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); border-radius: 20px 20px 0 0; }

.edit-form-title { font-family: var(--font-display); font-size: 28px; color: #fff; letter-spacing: 0.04em; margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: var(--font-sans); font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: #555; margin-bottom: 8px; }
.form-control {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: #fff;
    transition: border-color 0.3s ease;
    outline: none;
}
.form-control:focus { border-color: rgba(217,35,45,0.5); }
.form-control::placeholder { color: #333; }
textarea.form-control { resize: vertical; min-height: 100px; line-height: 1.6; }
select.form-control option { background: #111; color: #fff; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.edit-form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); }

.btn-cancel {
    padding: 12px 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-cancel:hover { background: rgba(255,255,255,0.08); color: #fff; }

.btn-save {
    padding: 12px 32px;
    border-radius: 8px;
    background: var(--red);
    border: 1px solid var(--red);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(217,35,45,0.3);
}
.btn-save:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════
   ADMIN INSTRUCTIONS SECTION
══════════════════════════════════════════════════════ */
.admin-instructions-banner {
    background: rgba(217,35,45,0.07);
    border: 1px solid rgba(217,35,45,0.2);
    border-radius: 12px;
    padding: 20px 28px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.aib-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(217,35,45,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aib-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; }
.aib-text { font-family: var(--font-sans); font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.aib-text strong { color: #fff; }

/* ══════════════════════════════════════════════════════
   SOCIAL SIDEBAR
══════════════════════════════════════════════════════ */
.social-sidebar { position: fixed; right: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; z-index: 9999; }
.toggle-btn { width: 52px; height: 58px; background: #111; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.2s; }
.toggle-btn:hover { background: #333; }
.arrow-icon { width: 18px; height: 18px; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.social-sidebar.open .arrow-icon { transform: rotate(180deg); }
.social-links { overflow: hidden; max-height: 0; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease; opacity: 0; }
.social-sidebar.open .social-links { max-height: 300px; opacity: 1; }
.social-btn { width: 52px; height: 58px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: filter 0.2s; }
.social-btn svg { width: 22px; height: 22px; }
.social-btn:hover { filter: brightness(1.15); }
.whatsapp-btn { background: #25D366; color: #fff; }
.linkedin-btn { background: #0A66C2; color: #fff; }
.youtube-btn { background: #FF0000; color: #fff; }
.facebook-btn{
    background: #1877F2;
    color: #ffffff;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav-links, .nav-controls .btn-audit { display: none; }
    .hamburger { display: flex; }
    .careers-hero-inner { grid-template-columns: 1fr; gap: 64px; text-align: center; }
    .careers-hero-sub { margin: 0 auto 48px; border-left: none; border-top: 2px solid rgba(255,56,70,0.6); padding: 24px 0 0; text-align: left; }
    .careers-hero-ctas { justify-content: center; }
    .careers-hero-visual { justify-content: center; }
    .about-working-inner { grid-template-columns: 1fr; gap: 64px; }
    .aw-float-badge { right: 0; bottom: -16px; }
    .jobs-grid { grid-template-columns: 1fr 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .workflow-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
    .workflow-steps::before { display: none; }
    .faq-inner { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid-premium { grid-template-columns: 1fr 1fr; gap: 60px; }
    .footer-brand-col { grid-column: span 2; }
    .positions-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .social-sidebar { display: none !important; }
}

@media (max-width: 768px) {
    .main-header { top: 12px; width: 94%; padding: 10px 16px; }
    .brand-text { font-size: 1.6rem; }
    .brand-icon-wrap { width: 40px; height: 40px; }
    .jobs-grid { grid-template-columns: 1fr; }
    .jobs-empty { grid-column: span 1; }
    .benefits-grid { grid-template-columns: 1fr; }
    .workflow-steps { grid-template-columns: 1fr; gap: 40px; }
    .hero-stat-row { grid-template-columns: 1fr 1fr; }
    .about-working { padding: 80px 0; }
    .positions-section { padding: 80px 0; }
    .benefits-section { padding: 80px 0; }
    .workflow-section { padding: 80px 0; }
    .faq-section { padding: 80px 0; }
    .careers-cta-strip { padding: 80px 0; }
    .footer-grid-premium { grid-template-columns: 1fr; }
    .footer-brand-col { grid-column: span 1; }
    .footer-bottom-bar { flex-direction: column; gap: 24px; text-align: center; }
    .fb-copy-wrap { flex-direction: column; gap: 12px; }
    .fb-watermark { padding-left: 0; border-left: none; }
    .aw-stat-grid { grid-template-columns: 1fr 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .edit-form-panel { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .main-header { top: 10px; width: 96%; padding: 8px 14px; }
    .brand-text { font-size: 1.4rem; }
    .careers-hero { padding-top: 130px; }
    .positions-filters { gap: 6px; }
    .admin-fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}













/* ══════════════════════════════════════════════════════
   PREMIUM MODAL TYPOGRAPHY (MARKDOWN SUPPORT)
══════════════════════════════════════════════════════ */
/* UPDATE: Switched to clean Sans-Serif and reduced font weights */
.job-modal-body h1, 
.job-modal-body h2, 
.job-modal-body h3, 
.job-modal-body h4 {
    font-family: var(--font-sans);
    color: var(--charcoal);
    font-weight: 700; /* Crisp, controlled boldness */
    margin: 1.5em 0 0.5em;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.job-modal-body h1 { 
    font-size: 28px; 
}

.job-modal-body h2 { 
    font-size: 22px; 
    color: var(--red); 
}

.job-modal-body h3 { 
    font-size: 18px; 
    font-weight: 600; /* Lighter weight for sub-sections */
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
}

.job-modal-body p {
    margin-bottom: 1.25em;
    color: #555;
}

.job-modal-body strong {
    font-weight: 700; /* Toned down from 800 */
    color: #111;
}

.job-modal-body em {
    font-style: italic;
    color: #777;
}

/* Custom Agency Bullet Points */
.job-modal-body ul, 
.job-modal-body ol {
    margin: 0 0 1.5em 0;
    padding-left: 24px;
}

.job-modal-body li {
    margin-bottom: 0.6em;
    position: relative;
    color: #555;
}

.job-modal-body ul li {
    list-style: none;
}

.job-modal-body ul li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0.65em;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(217,35,45,0.3); /* Slightly softer glow */
}

/* Elegant Links */
.job-modal-body a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(217, 35, 45, 0.3);
    transition: all 0.3s ease;
}

.job-modal-body a:hover {
    border-bottom-color: var(--red);
    background: rgba(217, 35, 45, 0.05);
}



/* ══════════════════════════════════════════════════════
   PREMIUM PAGE LOAD CHOREOGRAPHY (STAGGERED ENTRANCE)
══════════════════════════════════════════════════════ */
/* 1. Header slides down smoothly */
@keyframes headerDrop {
    from { opacity: 0; transform: translate(-50%, -30px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.main-header {
    opacity: 0;
    animation: headerDrop 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

/* 2. Hero Elements Cascade In */
.careers-hero-eyebrow {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.careers-hero-h1 {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.careers-hero-sub {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.careers-hero-ctas {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

/* 3. Hero Visual Container fades in (Child card keeps its continuous float) */
.careers-hero-visual {
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}



/* ══════════════════════════════════════════════════════
   PREMIUM MOBILE HERO ALIGNMENT 
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    /* Stack the grid and enforce center alignment */
    .careers-hero-inner { 
        grid-template-columns: 1fr; 
        gap: 64px; 
        text-align: center; 
    }

    /* Force the eyebrow to sit in the exact center */
    .careers-hero-eyebrow { 
        width: 100%;
        justify-content: center; 
        margin-bottom: 24px; 
    }

    .careers-hero-h1 {
        text-align: center;
    }

    /* Strip the desktop borders and perfectly center the subtext */
    .careers-hero-sub { 
        margin: 0 auto 40px; 
        border-left: none; /* Removes desktop left border */
        border-top: none; /* Removes previous top border hack */
        padding: 0; 
        text-align: center; 
        max-width: 540px; /* Keeps line length readable */
    }

    .careers-hero-ctas { 
        justify-content: center; 
    }
    
    .careers-hero-visual { 
        justify-content: center; 
    }
}

@media (max-width: 480px) {
    /* Tighter spacing for phone screens */
    .careers-hero { 
        padding-top: 120px; 
        padding-bottom: 60px; 
    }
    
    .careers-hero-inner { 
        gap: 48px; 
    }
    
    .careers-hero-h1 { 
        margin-bottom: 20px; 
    }
    
    .careers-hero-sub { 
        font-size: 15px; /* Slightly scaled down for small screens */
        line-height: 1.65;
        margin-bottom: 32px; 
        padding: 0 12px; /* Prevents text from touching the edge of the glass */
    }
}




































/* ==========================================================================
   ECOMMDOTS — PRIVACY POLICY MODULE
   * Includes global inheritance from core system *
   ========================================================================== */

/* ─── HERO SECTION ─── */
.policy-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
}

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

.policy-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
}

.policy-hero-bg::after {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217,35,45,0.15) 0%, transparent 60%);
}

.policy-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.policy-hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 110px);
    color: #fff;
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.policy-hero-sub {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

/* ─── POLICY BODY & LAYOUT ─── */
.policy-body-section {
    background: #f8f9fa;
    padding: 80px 0 140px;
}

.policy-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
}

/* ─── STICKY SIDEBAR INDEX ─── */
.policy-sidebar {
    position: sticky;
    top: 120px; /* Accounts for monolith header */
    height: max-content;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
}
.policy-sidebar::-webkit-scrollbar { display: none; }

.sidebar-inner {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.sidebar-title {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 16px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-nav a {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 12px;
    border-left: 2px solid transparent;
}

.sidebar-nav a:hover {
    color: var(--charcoal);
}

.sidebar-nav a.active {
    color: var(--red);
    border-left-color: var(--red);
    background: linear-gradient(90deg, rgba(217,35,45,0.05) 0%, transparent 100%);
}

/* ─── MAIN CONTENT TYPOGRAPHY ─── */
.policy-content {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 64px 80px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.policy-intro {
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--charcoal);
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.policy-block {
    margin-bottom: 56px;
}
.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-block h2::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 3px;
    background: var(--red);
}

.policy-block h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin: 32px 0 16px;
}

.policy-block p {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-block strong {
    color: var(--charcoal);
    font-weight: 700;
}

.policy-block em {
    font-style: italic;
    color: #888;
}

/* Custom Bullet Points */
.policy-block ul {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
}

.policy-block ul li {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.policy-block ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(217,35,45,0.4);
}

/* Legal Contact Card */
.contact-card {
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 3px solid var(--red);
    padding: 24px 32px;
    border-radius: 0 12px 12px 0;
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-top: 24px;
}

.contact-card a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-card a:hover {
    color: var(--charcoal);
}

/* Link Styling */
.policy-block p a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(217,35,45,0.3);
    transition: all 0.3s ease;
}
.policy-block p a:hover {
    border-bottom-color: var(--red);
    background: rgba(217,35,45,0.05);
}
/* ══════════════════════════════════════════════════════
   MOBILE BOTTOM-SHEET INDEX (MILLION DOLLAR UX)
══════════════════════════════════════════════════════ */
.mobile-index-trigger {
    display: none;
}

.mobile-index-overlay {
    display: none;
}

.sidebar-header-mobile .mobile-index-close {
    display: none;
}

@media (max-width: 1024px) {
    /* The Floating Glass Pill */
    .mobile-index-trigger {
        display: flex;
        align-items: center;
        gap: 8px;
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #fff;
        padding: 14px 28px;
        border-radius: 100px;
        font-family: var(--font-sans);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.15em;
        z-index: 1999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-index-trigger:hover, .mobile-index-trigger:active {
        background: var(--red);
        border-color: var(--red);
        transform: translateX(-50%) translateY(-2px);
        box-shadow: 0 12px 40px rgba(217, 35, 45, 0.4);
    }

    .mobile-index-trigger svg {
        width: 16px;
        height: 16px;
    }

    /* The Obsidian Backdrop */
    .mobile-index-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(5, 5, 5, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 2000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }
    
    .mobile-index-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Transforming Sidebar into a Bottom Sheet */
    .policy-grid {
        display: block; /* Break the grid on mobile */
    }

    .policy-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: 80vh;
        z-index: 2001;
        transform: translateY(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
    }

    .policy-sidebar.active {
        transform: translateY(0);
        pointer-events: auto;
    }

    .sidebar-inner {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 24px 24px 0 0;
        padding: 0;
        box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.15);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* Mobile Sheet Header */
    .sidebar-header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 32px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .sidebar-header-mobile .sidebar-title {
        margin: 0;
        border: none;
        padding: 0;
    }

    .sidebar-header-mobile .mobile-index-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #f2f2f2;
        border: none;
        cursor: pointer;
    }
    
    .sidebar-header-mobile .mobile-index-close svg {
        width: 16px;
        height: 16px;
        stroke: #333;
        stroke-width: 2.5;
    }

    /* Scrollable App-like Nav List */
    .sidebar-nav {
        flex-direction: column;
        gap: 0;
        padding: 12px 24px 32px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: calc(80vh - 75px);
    }

    .sidebar-nav a {
        padding: 16px 12px;
        font-size: 14px;
        border-left: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        border-radius: 0;
        background: transparent;
        color: #444;
    }

    .sidebar-nav a:last-child {
        border-bottom: none;
    }

    .sidebar-nav a.active {
        background: transparent;
        color: var(--red);
        font-weight: 800;
    }
    
    .sidebar-nav a.active::after {
        content: '•';
        color: var(--red);
        float: right;
    }
}

@media (max-width: 768px) {
    .policy-content {
        padding: 40px 24px;
        border-radius: 12px;
    }
    
    .policy-block h2 {
        font-size: 28px;
    }
    
    .contact-card {
        padding: 20px;
    }
}

.section-eyebrow .ey-text-pp { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
