/* ============================================
   WORKNEARS - ULTRA-PREMIUM 3D WEBSITE
   ============================================ */

/* CSS Variables & Theme */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #c0c0c0;
    --neon-green: #c0c0c0;
    --dark-bg: #0a0a0a;
    --light-bg: #FFFFFF;
    --card-dark: #1a1a1a;
    --card-light: #FFFFFF;
    --text-dark: #111827;
    --text-light: #f5f5f5;
    --text-muted: #999999;
    --glass-bg: rgba(192, 192, 192, 0.08);
    --glass-border: rgba(192, 192, 192, 0.15);
    
    /* Black & Silver Accents */
    --black-accent: #1a1a1a;
    --silver-accent: #c0c0c0;
    --silver-light: #e8e8e8;
    --gold-accent: #ffd700;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(192, 192, 192, 0.25);
    --shadow-glow-silver: 0 0 40px rgba(192, 192, 192, 0.4);
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark Mode (Default) */
body {
    --bg: #0F172A;
    --card-bg: #1F2937;
    --text: #F3F4F6;
    --text-secondary: rgba(243, 244, 246, 0.75);
}

/* Light Mode */
body.light-mode {
    --bg: #FFFFFF;
    --card-bg: #F9FAFB;
    --text: #111827;
    --text-secondary: rgba(17, 24, 39, 0.7);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e8e8e8;
}

/* Black Theme - Smooth Performance */
:root {
    --bg: #000000;
    --card-bg: #111111;
    --text: #ffffff;
    --text-secondary: #ffffff;
    --primary: #6366f1;
    --accent: #10b981;
    --border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove Heavy Animations */
*, *::before, *::after {
    animation: none !important;
    transition: none !important;
}

/* Simple Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.logo-accent {
    color: var(--primary);
}

/* Left Sidebar - Working Menu */
.hamburger-left {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    margin-right: 1rem;
}

.hamburger-left span {
    width: 24px;
    height: 3px;
    background: var(--text);
    transition: all 0.2s ease;
}

.hamburger-left.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-left.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-left.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.sidebar-menu {
    position: fixed;
    left: 0;
    top: 70px;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--card-bg);
    border-right: 1px solid var(--border);
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    z-index: 998;
    overflow-y: auto;
}

.sidebar-menu.active {
    transform: translateX(0);
}

.sidebar-links {
    list-style: none;
    padding: 1rem 0;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.sidebar-links a:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text);
    transition: all 0.2s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: var(--card-bg);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    border-bottom: 1px solid var(--border);
}

.mobile-nav.active {
    max-height: 400px;
}

.mobile-nav li {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.mobile-nav a {
    color: var(--text);
    text-decoration: none;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Simple Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-primary-small,
.btn-secondary-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.btn-primary-small {
    background: var(--primary);
    color: white;
}

.btn-secondary-small {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

/* Hero Section - Classic Black */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
    padding: 2rem;
    background: #000000;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 10;
    margin: 0 auto;
}

.hero-title-3d {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text);
}

.word-3d {
    display: inline-block;
    margin: 0 0.2em;
}

.word-3d:nth-child(2) {
    color: var(--primary);
}

.hero-subtitle-main {
    font-size: clamp(1rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-subtitle {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

.btn-primary-large {
    background: var(--primary);
    color: white;
}

.btn-secondary-large {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
}

.stat h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.growth-earnings-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.earnings-card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.earnings-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.earnings-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.earnings-card h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.earnings-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

.earnings-chart {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    height: 60px;
    margin-bottom: 1rem;
}

.chart-bar-item {
    flex: 1;
    background: var(--primary);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.payout-feature {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgb(236, 236, 241);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Sections */
.how-it-works,
.job-types,
.trust-safety,
.smart-wallet,
.profile-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Cards */
.job-card,
.timeline-item,
.verification-item,
.feature-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.2s ease;
}

.job-card:hover,
.timeline-item:hover,
.verification-item:hover,
.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Grid Layouts */
.job-cards-container,
.timeline,
.verification-features,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Footer */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4,
.footer-section h5 {
    color: var(--text);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger-left {
        display: flex;
    }
    
    .nav-menu:not(.mobile-nav) {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .hero {
        padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .job-cards-container,
    .timeline,
    .verification-features,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: #f5f5f5;
    box-shadow: 
        var(--shadow-glow),
        inset 0 1px 0 rgba(192, 192, 192, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.4), transparent);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.4);
    background: #3a3a3a;
}

.btn-secondary {
    background: transparent;
    color: #c0c0c0;
    border: 2px solid #c0c0c0;
}

.btn-secondary:hover {
    background: #c0c0c0;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(192, 192, 192, 0.2),
        inset 0 1px 0 rgba(192, 192, 192, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(192, 192, 192, 0.3) 50%, transparent 70%);
    animation: premiumShine 2s infinite;
}

.btn-primary-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.5), transparent);
}

.btn-primary-large .btn-icon,
.btn-primary-large span {
    position: relative;
    z-index: 1;
}

.btn-secondary-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    background: transparent;
    border: 2px solid #c0c0c0;
    color: #c0c0c0;
}

.btn-secondary-large:hover {
    background: #c0c0c0;
    color: #1a1a1a;
}

.btn-glow {
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-glow:hover {
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.btn-card {
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    padding: 2rem 1rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F172A 0%, #1A1F3A 50%, #0a0e1a 100%);
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 82, 204, 0.08), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.04), transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(26, 31, 58, 0.5), transparent 70%);
    animation: gradientShift 15s ease infinite;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(15, 23, 42, 0.3));
    z-index: 1;
}

/* ============================================
   STARFIELD CONTAINER
   ============================================ */

.starfield-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.stars-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* ============================================
   3D STARS ANIMATION
   ============================================ */

.stars-canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

/* ============================================
   MOON ELEMENT - PREMIUM VERSION
   ============================================ */

.moon {
    position: absolute;
    top: 8%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 35% 35%, #f5f5f5 0%, #e8e8e8 20%, #c0c0c0 50%, #909090 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 80px rgba(192, 192, 192, 0.5),
        0 0 120px rgba(192, 192, 192, 0.3),
        inset -30px -30px 50px rgba(0, 0, 0, 0.4),
        inset 8px 8px 15px rgba(255, 255, 255, 0.3),
        inset -5px -5px 10px rgba(0, 0, 0, 0.2);
    animation: moonGlow 4s ease-in-out infinite, moonFloat 5s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(192, 192, 192, 0.3));
}

.moon::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(80, 80, 80, 0.8), transparent);
    border-radius: 50%;
    top: 25%;
    left: 30%;
    box-shadow: 
        25px 18px 0 -2px rgba(80, 80, 80, 0.6),
        40px 28px 0 -1px rgba(80, 80, 80, 0.5),
        -20px 22px 0 -2px rgba(80, 80, 80, 0.5),
        45px 5px 0 rgba(80, 80, 80, 0.4);
}

.moon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 50%);
}

@keyframes moonGlow {
    0%, 100% {
        box-shadow: 
            0 0 80px rgba(192, 192, 192, 0.5),
            0 0 120px rgba(192, 192, 192, 0.3),
            inset -30px -30px 50px rgba(0, 0, 0, 0.4),
            inset 8px 8px 15px rgba(255, 255, 255, 0.3),
            inset -5px -5px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 100px rgba(192, 192, 192, 0.6),
            0 0 150px rgba(192, 192, 192, 0.4),
            inset -30px -30px 50px rgba(0, 0, 0, 0.4),
            inset 8px 8px 15px rgba(255, 255, 255, 0.4),
            inset -5px -5px 10px rgba(0, 0, 0, 0.2);
    }
}

@keyframes moonFloat {
    0%, 100% {
        transform: translateY(0) rotateZ(0deg);
    }
    50% {
        transform: translateY(-20px) rotateZ(5deg);
    }
}

/* ============================================
   LOCATION PIN MARKERS
   ============================================ */

.location-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.location-marker {
    position: absolute;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.25), rgba(0, 82, 204, 0.1));
    border: 2px solid rgba(0, 82, 204, 0.5);
    border-radius: 50%;
    animation: locationPulse 2.5s ease-in-out infinite;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-pin {
    width: 28px;
    height: 28px;
    color: #c0c0c0;
    animation: pinBounce 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(192, 192, 192, 0.6)) drop-shadow(0 0 8px rgba(192, 192, 192, 0.4));
}

.location-marker::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
}

.location-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #0052CC;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 82, 204, 0.6);
    z-index: 1;
}

@keyframes locationPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.5);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(0, 82, 204, 0);
    }
}

@keyframes pinBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

/* ============================================
   PREMIUM SHINE LAYER
   ============================================ */

.shine-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(192, 192, 192, 0.05) 20%,
        rgba(192, 192, 192, 0.1) 50%,
        rgba(192, 192, 192, 0.05) 80%,
        transparent 100%
    );
    animation: premiumShine 3s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes premiumShine {
    0% {
        transform: translateX(-100%) translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%);
        opacity: 0;
    }
}

/* ============================================
   HERO BACKGROUND OVERLAY
   ============================================ */

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(0, 82, 204, 0.1), transparent 70%);
    z-index: 1;
}

#globeCanvas {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 450px;
    height: 450px;
    transform: translateY(-50%);
    opacity: 0.85;
    z-index: 3;
    filter: drop-shadow(0 0 40px rgba(0, 82, 204, 0.25)) drop-shadow(0 0 60px rgba(192, 192, 192, 0.1));
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.animated-text {
    margin-bottom: 2rem;
}

/* ============================================
   3D TITLE STYLING
   ============================================ */

.hero-title-3d {
    font-size: clamp(3rem, 12vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    perspective: 1000px;
}

.word-3d {
    display: inline-block;
    background: linear-gradient(135deg, #0052CC 0%, #1E40AF 50%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 20px rgba(0, 82, 204, 0.3),
        0 0 40px rgba(192, 192, 192, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: title3DFloat 2s ease-in-out infinite;
    margin: 0 0.3em;
}

.word-3d:nth-child(1) {
    animation-delay: 0s;
}

.word-3d:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes title3DFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-15px) rotateX(5deg);
    }
}

.hero-subtitle-main {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #F3F4F6 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtitleFadeIn 0.8s ease-out 0.2s both;
}

.word {
    display: inline-block;
    animation: wordBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-fill-mode: both;
}

.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.2s; }
.word:nth-child(3) { animation-delay: 0.3s; }
.word:nth-child(4) { animation-delay: 0.4s; }
.word:nth-child(5) { animation-delay: 0.5s; }
.word:nth-child(6) { animation-delay: 0.6s; }

@keyframes wordBounce {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.subtitle-item {
    display: inline-block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes premiumShine {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.stat {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.stat:hover {
    background: rgba(0, 82, 204, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #0052CC, #1E40AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   GROWTH & EARNINGS SECTION
   ============================================ */

.growth-earnings-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.earnings-card {
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(192, 192, 192, 0.06));
    border: 1px solid rgba(192, 192, 192, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.earnings-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(50%, 50%);
        opacity: 0;
    }
}

.earnings-card:hover {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(192, 192, 192, 0.08));
    border-color: rgba(192, 192, 192, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(192, 192, 192, 0.25);
}

.earnings-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.earnings-card h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.earnings-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight {
    background: linear-gradient(135deg, #0052CC, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.earnings-chart {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    height: 60px;
    margin-bottom: 1rem;
}

.chart-bar-item {
    flex: 1;
    background: linear-gradient(180deg, #0052CC, #1E40AF);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    box-shadow: 0 0 10px rgba(0, 82, 204, 0.3);
    animation: barGrowth 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-fill-mode: backwards;
}

.chart-bar-item:nth-child(1) { animation-delay: 0.1s; }
.chart-bar-item:nth-child(2) { animation-delay: 0.2s; }
.chart-bar-item:nth-child(3) { animation-delay: 0.3s; }
.chart-bar-item:nth-child(4) { animation-delay: 0.4s; }
.chart-bar-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes barGrowth {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.payout-feature {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(236, 239, 243, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #ffffff;
    border: 1px solid rgba(0, 82, 204, 0.2);
    transition: var(--transition-smooth);
}

.feature-badge:hover {
    background: rgba(0, 82, 204, 0.15);
    border-color: rgba(0, 82, 204, 0.3);
}

.feature-badge::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #059669;
    border-radius: 50%;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(30, 64, 175, 0.05));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(3) { animation-delay: 0.2s; }
.timeline-item:nth-child(5) { animation-delay: 0.3s; }
.timeline-item:nth-child(7) { animation-delay: 0.4s; }

.timeline-item:hover {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.15), rgba(30, 64, 175, 0.1));
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-glow);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-weight: 600;
    color: var(--accent-color);
}

.step-icon {
    text-align: center;
    margin: 1rem 0;
}

.icon-svg {
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(0, 82, 204, 0.3));
}

.timeline-connector {
    display: none;
}

/* ============================================
   JOB TYPES SECTION
   ============================================ */

.job-types {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.job-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.job-card {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: cardSlide 0.6s ease-out;
    animation-fill-mode: both;
}

.job-card:nth-child(1) { animation-delay: 0.1s; }
.job-card:nth-child(2) { animation-delay: 0.2s; }
.job-card:nth-child(3) { animation-delay: 0.3s; }
.job-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardSlide {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-instant {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(5, 150, 105, 0.08));
    border-color: rgba(0, 82, 204, 0.3);
}

.card-short {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.12), rgba(5, 150, 105, 0.08));
    border-color: rgba(30, 64, 175, 0.3);
}

.card-part {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.12), rgba(16, 185, 129, 0.08));
    border-color: rgba(5, 150, 105, 0.3);
}

.card-full {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(30, 64, 175, 0.08));
    border-color: rgba(0, 82, 204, 0.3);
}

.job-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-instant:hover {
    border-color: rgba(0, 82, 204, 0.6);
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.2), rgba(5, 150, 105, 0.12));
}

.card-short:hover {
    border-color: rgba(30, 64, 175, 0.6);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(5, 150, 105, 0.12));
}

.card-part:hover {
    border-color: rgba(5, 150, 105, 0.6);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.2), rgba(16, 185, 129, 0.12));
}

.card-full:hover {
    border-color: rgba(0, 82, 204, 0.6);
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.2), rgba(30, 64, 175, 0.12));
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition-bounce);
}

.job-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.job-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.radius {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   TRUST & SAFETY SECTION
   ============================================ */

.trust-safety {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-3d {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    font-size: 150px;
    animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.verification-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: rotate 8s linear infinite, pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.verification-features {
    display: grid;
    gap: 1.5rem;
}

.verification-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.verification-item:nth-child(1) { animation-delay: 0.1s; }
.verification-item:nth-child(2) { animation-delay: 0.2s; }
.verification-item:nth-child(3) { animation-delay: 0.3s; }
.verification-item:nth-child(4) { animation-delay: 0.4s; }
.verification-item:nth-child(5) { animation-delay: 0.5s; }
.verification-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.verification-item:hover {
    background: rgba(0, 82, 204, 0.1);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.verification-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.verification-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.verification-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .trust-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SMART WALLET SECTION
   ============================================ */

.smart-wallet {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.wallet-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.wallet-visual {
    display: flex;
    justify-content: center;
}

.wallet-card {
    width: 100%;
    max-width: 320px;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(5, 150, 105, 0.08));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 82, 204, 0.15);
    animation: walletFloat 3s ease-in-out infinite;
}

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

.wallet-header {
    margin-bottom: 2rem;
    text-align: center;
}

.wallet-header h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.wallet-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.balance-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
}

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

.balance-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.balance-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.balance-value.locked {
    color: #f59e0b;
}

.balance-value.available {
    color: var(--accent-color);
}

.wallet-actions {
    display: flex;
    gap: 1rem;
}

.wallet-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.wallet-features {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.wallet-features h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.feature-box {
    padding: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(5, 150, 105, 0.05));
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-box:hover {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(5, 150, 105, 0.08));
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .wallet-container {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PROFILE SECTION
   ============================================ */

.profile-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.profile-card-main {
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(5, 150, 105, 0.05));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.profile-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.profile-name h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.trust-score {
    color: #fbbf24;
    font-weight: 600;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
}

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

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.skill-badges {
    margin-bottom: 2rem;
}

.skill-badges h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    color: #ffffff !important;
}

.badge-gold {
    background: rgb(250, 249, 248);
    border: 1px solid rgba(217, 119, 6, 0.5);
    color: #ffffff;
}

.badge-silver {
    background: rgba(148, 163, 184, 0.2);
    border: 1px solid rgba(148, 163, 184, 0.5);
    color: #ffffff;
}

.badge-bronze {
    background: rgba(217, 119, 6, 0.15);
    border: 1px solid rgba(217, 119, 6, 0.4);
    color: #ffffff;
}

.badge-star {
    background: rgba(0, 82, 204, 0.15);
    border: 1px solid rgba(0, 82, 204, 0.4);
    color: #ffffff;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 82, 204, 0.2);
}

.work-history {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.work-history h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.history-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.history-item.completed {
    border-left: 4px solid var(--accent-color);
}

.history-item:hover {
    background: rgba(0, 82, 204, 0.1);
}

.work-title {
    font-weight: 600;
    display: block;
}

.work-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
}

.work-amount {
    font-weight: 700;
    color: var(--accent-color);
}

.profile-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(0, 82, 204, 0.05));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.metric-card:nth-child(1) { animation-delay: 0.2s; }
.metric-card:nth-child(2) { animation-delay: 0.3s; }
.metric-card:nth-child(3) { animation-delay: 0.4s; }

.metric-card h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.experience-bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.experience-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    animation: fillBar 1.5s ease-out;
}

@keyframes fillBar {
    from {
        width: 0 !important;
    }
}

.experience-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.chart-placeholder {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 60px;
}

.mini-chart {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    align-items: flex-end;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px 4px 0 0;
    animation: barGrow 0.6s ease-out;
    animation-fill-mode: both;
}

.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.3s; }
.bar:nth-child(4) { animation-delay: 0.4s; }
.bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes barGrow {
    from {
        height: 0;
    }
}

.rating-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-row {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    gap: 1rem;
}

.rating-row span:first-child {
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.rating-bar {
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--neon-green));
    border-radius: 3px;
}

.rating-row span:last-child {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 4rem 2rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h4,
.footer-column h5 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }

    #globeCanvas {
        width: 300px;
        height: 300px;
        right: 5%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .timeline {
        grid-template-columns: 1fr 1fr;
    }

    .job-cards-container {
        grid-template-columns: 1fr 1fr;
    }

    .trust-container {
        grid-template-columns: 1fr;
    }

    .wallet-container {
        grid-template-columns: 1fr;
    }

    .profile-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-subtitle {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .job-cards-container {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
    }

    #globeCanvas {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITY ANIMATIONS
   ============================================ */

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Intersection Observer Animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.05) 100%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}
/* ============================================
   NEW PAGE STYLES - AUTH, FORMS, CONTENT
   ============================================ */

/* Auth Pages (Login, Get Started) */
.auth-section {
    min-height: 100vh;
    padding: 60px 20px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.auth-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text);
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 2px solid rgba(0, 82, 204, 0.2);
    border-radius: 10px;
    background: rgba(0, 82, 204, 0.05);
    color: var(--text);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 82, 204, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-icon {
    position: absolute;
    right: 12px;
    top: 38px;
    font-size: 18px;
    pointer-events: none;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin: 20px 0;
    position: relative;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(0, 82, 204, 0.2);
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.social-auth {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid rgba(0, 82, 204, 0.2);
    border-radius: 10px;
    background: rgba(0, 82, 204, 0.05);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.social-btn:hover {
    border-color: var(--primary-color);
    background: rgba(0, 82, 204, 0.1);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-graphic {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.graphic-card {
    background: rgba(0, 82, 204, 0.08);
    border: 2px solid rgba(0, 82, 204, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.graphic-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 82, 204, 0.15);
    transform: translateY(-5px);
}

.graphic-card.highlight {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(30, 64, 175, 0.1));
    border-color: var(--primary-color);
}

.graphic-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.graphic-card h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 18px;
}

.graphic-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Role Selector */
.role-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.role-btn {
    padding: 20px;
    border: 2px solid rgba(0, 82, 204, 0.2);
    border-radius: 12px;
    background: rgba(0, 82, 204, 0.05);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.role-btn:hover {
    border-color: var(--primary-color);
    background: rgba(0, 82, 204, 0.1);
}

.role-btn.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(0, 82, 204, 0.08));
    box-shadow: 0 0 20px rgba(0, 82, 204, 0.2);
}

.role-icon {
    font-size: 32px;
}

.role-btn strong {
    font-size: 16px;
}

.role-btn small {
    font-size: 12px;
    color: var(--text-secondary);
}

/* App Download Section */
.app-download-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(5, 150, 105, 0.06));
    border-radius: 20px;
    margin: 60px 0;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .app-container {
        grid-template-columns: 1fr;
    }
}

.app-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text);
}

.app-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.app-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 600px) {
    .app-buttons {
        flex-direction: column;
    }
}

.app-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    background: var(--card-bg);
    border: 2px solid rgba(0, 82, 204, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition-smooth);
}

.app-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 82, 204, 0.15);
}

.app-store-icon {
    font-size: 32px;
}

.app-btn small {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
}

.app-btn strong {
    display: block;
    font-size: 16px;
    color: var(--text);
}

.phone-mockup {
    display: flex;
    justify-content: center;
}

.phone-screen {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 82, 204, 0.08) 100%);
    border: 20px solid var(--card-bg);
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 25px;
    background: var(--card-bg);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.job-card-mini {
    background: rgba(0, 82, 204, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(0, 82, 204, 0.3);
}

.job-card-mini strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 14px;
}

.job-card-mini p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 4px 0;
}

/* Content Pages */
.content-section {
    min-height: 100vh;
    padding: 60px 20px;
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--text);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.about-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-card h3 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 20px;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    text-align: center;
}

.stat-item h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-secondary);
}

.team-section {
    margin-top: 60px;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.team-section > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.member-avatar {
    font-size: 48px;
    margin-bottom: 15px;
}

.team-member h4 {
    color: var(--text);
    margin-bottom: 10px;
}

.team-member p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Policy Pages */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
}

.policy-content h2 {
    color: var(--text);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

.policy-content h3 {
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.policy-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Jobs Page */
.jobs-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .jobs-filter {
        flex-direction: column;
    }
}

.filter-input,
.filter-select {
    padding: 12px 16px;
    border: 2px solid rgba(0, 82, 204, 0.2);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.jobs-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card-full {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition-smooth);
}

.job-card-full:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.job-category {
    background: rgba(0, 82, 204, 0.12);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.job-distance {
    color: var(--text-secondary);
    font-size: 14px;
}

.job-card-full h3 {
    color: var(--text);
    margin-bottom: 8px;
    font-size: 20px;
}

.job-description {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.job-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-pay,
.job-time {
    color: var(--text-secondary);
    font-size: 14px;
}

.job-owner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 82, 204, 0.1);
}

.job-owner span {
    color: var(--text-secondary);
    font-size: 14px;
}

.rating {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-primary-small,
.btn-secondary-small {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.btn-primary-small {
    background: var(--primary-color);
    color: white;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.btn-secondary-small {
    background: rgba(0, 82, 204, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary-small:hover {
    background: var(--primary-color);
    color: white;
}

/* Profile Page */
.profile-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-header {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
}

@media (max-width: 768px) {
    .profile-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.profile-avatar {
    font-size: 80px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(5, 150, 105, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-info h1 {
    color: var(--text);
    margin-bottom: 5px;
}

.profile-status {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.profile-stats {
    display: flex;
    gap: 30px;
}

.profile-stats .stat {
    text-align: center;
}

.profile-stats .stat strong {
    display: block;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.profile-stats .stat span {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
}

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

.profile-section-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
}

.profile-section-card h3 {
    color: var(--text);
    margin-bottom: 20px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: rgba(0, 82, 204, 0.12);
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.wallet-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.balance {
    padding: 15px;
    background: rgba(0, 82, 204, 0.08);
    border-radius: 10px;
    text-align: center;
}

.balance span {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 5px;
}

.balance h2 {
    color: var(--primary-color);
    font-size: 24px;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(0, 82, 204, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.job-item span:first-child {
    color: var(--text);
    font-weight: 600;
    flex: 1;
}

.status {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.status.completed {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-color);
}

.status.in-progress {
    background: rgba(0, 82, 204, 0.15);
    color: var(--primary-color);
}

.amount {
    color: var(--accent-color);
    font-weight: 700;
}

.chart-placeholder {
    background: rgba(0, 82, 204, 0.05);
    border-radius: 10px;
    border: 2px dashed rgba(0, 82, 204, 0.2);
    color: var(--text-secondary);
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-item {
    padding: 15px;
    background: rgba(0, 82, 204, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-header strong {
    color: var(--text);
}

.review-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.settings-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.settings-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.settings-link:hover {
    background: rgba(0, 82, 204, 0.1);
}

/* Job Form */
.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.job-form {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(0, 82, 204, 0.2);
    border-radius: 8px;
    background: rgba(0, 82, 204, 0.05);
    color: var(--text);
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 82, 204, 0.1);
}

.time-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.time-inputs input {
    flex: 1;
}

.time-inputs span {
    color: var(--text-secondary);
}

.pay-input {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-input span {
    color: var(--text);
    font-weight: 600;
}

.pay-input input {
    flex: 1;
}

.pay-input select {
    flex: 0 0 auto;
}

.payment-security {
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.security-info input {
    margin-right: 10px;
    cursor: pointer;
}

.security-info label {
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.security-info small {
    display: block;
    color: var(--text-secondary);
    margin-top: 8px;
    margin-left: 24px;
    font-size: 12px;
}

/* Talent/Worker Cards */
.talent-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.talent-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: var(--transition-smooth);
}

.talent-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.talent-header {
    position: relative;
    margin-bottom: 15px;
}

.talent-avatar {
    font-size: 60px;
    width: 80px;
    height: 80px;
    background: rgba(0, 82, 204, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.talent-rating {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-color);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.talent-card h3 {
    color: var(--text);
    margin-bottom: 5px;
    font-size: 18px;
}

.talent-title {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 15px;
}

.talent-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}

.skill-badge {
    background: rgba(0, 82, 204, 0.12);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.talent-info {
    display: flex;
    justify-content: space-around;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 82, 204, 0.1);
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 13px;
}

/* Support Page */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.support-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.support-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.support-card h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 18px;
}

.support-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.faq-section {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
}

.faq-section h2 {
    color: var(--text);
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 82, 204, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-item h4:hover {
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.contact-form-section {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section h2 {
    color: var(--text);
    margin-bottom: 10px;
    text-align: center;
}

.contact-form-section > p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

/* Safety Page */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.safety-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.safety-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.safety-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.safety-card h3 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 18px;
}

.safety-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-card li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.safety-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.trust-features {
    margin-top: 60px;
}

.trust-features h2 {
    text-align: center;
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature h4 {
    color: var(--text);
    margin-bottom: 10px;
}

.feature p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.blog-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(5, 150, 105, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-category {
    background: rgba(0, 82, 204, 0.12);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
}

.blog-card h3 {
    color: var(--text);
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: auto;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    color: var(--text-secondary);
    font-size: 12px;
    border-top: 1px solid rgba(0, 82, 204, 0.1);
    padding-top: 15px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-smooth);
}

.blog-link:hover {
    transform: translateX(5px);
}

/* Payments Page */
.payment-card-big {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
}

.payment-card-big h3 {
    color: var(--text);
    margin-bottom: 20px;
}

.balance-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .balance-display {
        grid-template-columns: 1fr;
    }
}

.balance-item {
    background: rgba(0, 82, 204, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 82, 204, 0.1);
}

.balance-item span {
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
}

.balance-item h2 {
    color: var(--primary-color);
    font-size: 28px;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(0, 82, 204, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.transaction-info strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.transaction-info small {
    color: var(--text-secondary);
    font-size: 12px;
}

.transaction-amount {
    color: var(--primary-color);
    font-weight: 700;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 82, 204, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 82, 204, 0.1);
}

.method-icon {
    font-size: 28px;
}

.method-info {
    flex: 1;
}

.method-info strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.method-info small {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
}

.billing-settings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.setting-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--text);
}

.setting-item input {
    margin-right: 10px;
    cursor: pointer;
}

.spending-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chart-item span {
    min-width: 80px;
    color: var(--text-secondary);
    font-size: 14px;
}

.chart-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: white;
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition-smooth);
}

.chart-bar:hover {
    box-shadow: 0 0 15px rgba(0, 82, 204, 0.3);
}

/* Footer */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--glass-border);
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4,
.footer-section h5 {
    color: var(--text);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 82, 204, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
}

/* ============================================
   MOBILE OPTIMIZATION - SMOOTH RESPONSIVE DESIGN
   ============================================ */



/* ============================================
   ENHANCED ANIMATIONS - BLACK & SILVER THEME
   ============================================ */

/* Smooth fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow pulse animation */
@keyframes silverPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(192, 192, 192, 0.3), inset 0 0 20px rgba(192, 192, 192, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(192, 192, 192, 0.5), inset 0 0 30px rgba(192, 192, 192, 0.2);
    }
}

/* Smooth scale animation */
@keyframes smoothScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Enhanced glow animation */
@keyframes enhancedGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(192, 192, 192, 0.3), 0 0 10px rgba(192, 192, 192, 0.2);
    }
    50% {
        text-shadow: 0 0 10px rgba(192, 192, 192, 0.6), 0 0 20px rgba(192, 192, 192, 0.4);
    }
}

/* Float animation */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Apply animations to elements */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title-3d {
    animation: fadeInUp 1s ease-out, enhancedGlow 3s ease-in-out infinite;
}

.hero-subtitle-main {
    animation: fadeInUp 1.2s ease-out;
}

.btn-primary-large:hover,
.btn-secondary-large:hover {
    animation: silverPulse 2s ease-in-out infinite;
}

.location-marker {
    animation: floatAnimation 2s ease-in-out infinite;
}

.moon {
    animation: floatAnimation 4s ease-in-out infinite;
}

/* Mobile smooth transitions */
@media (max-width: 768px) {
    * {
        transition: all 0.2s ease-out !important;
    }
    
    .hero-content {
        animation: fadeInUp 0.8s ease-out;
    }
    
    .hero-buttons .btn {
        animation: fadeInUp 1s ease-out backwards;
    }
    
    .hero-buttons .btn:nth-child(1) { animation-delay: 0.1s; }
    .hero-buttons .btn:nth-child(2) { animation-delay: 0.2s; }
}

/* Smooth page transitions */
@keyframes pageSlide {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body {
    animation: pageSlide 0.5s ease-out;
}

/* Enhanced card hover effects */
.card:hover {
    animation: smoothScale 0.3s ease-out forwards;
}

/* Smooth menu transitions */
.nav-link:hover {
    color: #c0c0c0;
    animation: enhancedGlow 1s ease-in-out infinite;
}