/* ================================
   REMOTIVES - MODERN REMOTE WORK
   Redesigned Modern Interface
   ================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-teal: #1d6363;
    --teal-light: #2D8787;
    --teal-dark: #155050;
    --secondary-teal: #20B2AA;
    --accent-cyan: #00CED1;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #1d6363, #2D8787);
    --accent-gradient: linear-gradient(135deg, #20B2AA, #00CED1);
    --dark-gradient: linear-gradient(135deg, #0F2027, #203A43, #2C5364);
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Status Colors */
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --info-color: #3B82F6;
    
    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    
    /* Background */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-dark: #0F172A;
    --bg-card: rgba(255, 255, 255, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.1);
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    
    /* Border Radius */
    --radius-xs: 0.25rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-teal: 0 8px 25px rgba(29, 99, 99, 0.15);
    --shadow-glow: 0 0 20px rgba(29, 99, 99, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    
    /* Breakpoints */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    line-height: 1.7;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Utility Classes */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(29, 99, 99, 0.2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-teal);
    margin-bottom: var(--space-6);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: var(--space-4) 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: var(--space-3) 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-normal);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn-nav {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-teal);
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-24) 0 var(--space-20);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(29, 99, 99, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(29, 99, 99, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-gradient);
    top: 10%;
    right: 10%;
}

.hero-orb-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    bottom: 20%;
    left: 10%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(29, 99, 99, 0.2);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-teal);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: var(--space-1);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    animation: fadeInUp 0.8s ease-out 1s both;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-4) var(--space-8);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-teal);
}

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

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: transparent;
    color: var(--text-primary);
    padding: var(--space-4) var(--space-8);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.secondary-btn:hover {
    background: var(--gray-50);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-right {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-visual {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.main-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-teal);
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: var(--space-1);
}

.user-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--success-color);
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.earnings-display {
    text-align: center;
    margin-bottom: var(--space-6);
}

.earnings-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.earnings-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: var(--space-2);
}

.earnings-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--success-color);
    font-weight: 500;
}

.work-progress {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-3);
    font-size: 0.875rem;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    width: 80%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    left: -25%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: -15%;
    animation-delay: 2s;
}

/* Opportunities Section */
.opportunities-section {
    padding: var(--space-24) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-16);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

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

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.opportunity-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.opportunity-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-6);
}

.opportunity-card h3 {
    margin-bottom: var(--space-4);
}

.opportunity-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.time-estimate {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.difficulty {
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.difficulty.easy {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.difficulty.medium {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

/* Success Stories Section */
.success-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #F0F9F9 0%, #FFFFFF 50%, #F0FDF4 100%);
    position: relative;
    overflow: hidden;
}

.success-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-teal);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 10s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 80%; animation-delay: 2s; }
.particle-3 { top: 30%; left: 60%; animation-delay: 4s; }
.particle-4 { top: 80%; left: 20%; animation-delay: 6s; }
.particle-5 { top: 10%; left: 90%; animation-delay: 8s; }

.success-content {
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-20);
}

/* Live Statistics Card */
.live-stats-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    margin-bottom: var(--space-16);
    box-shadow: var(--shadow-xl);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.stats-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--success-color);
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    margin: 0 auto var(--space-3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-teal);
    margin-bottom: var(--space-1);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Success Stories */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.story-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.story-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.story-card.featured {
    border: 2px solid var(--primary-teal);
    box-shadow: var(--shadow-glow);
}

.story-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.user-avatar {
    position: relative;
}

.user-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-teal);
}

.verification-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: var(--success-color);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
}

.user-info {
    flex: 1;
}

.user-info h4 {
    margin-bottom: var(--space-1);
    font-size: 1.125rem;
    color: var(--text-primary);
}

.user-info p {
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
}

.join-date {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.earnings-badge {
    text-align: center;
    background: rgba(29, 99, 99, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
}

.earnings-badge span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.earnings-badge small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.story-content p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.story-metrics {
    display: flex;
    justify-content: space-between;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: var(--space-1);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Global Activity */
.global-activity {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.activity-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.activity-count {
    text-align: center;
}

.count-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.activity-count span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.activity-item:hover {
    background: var(--gray-100);
}

.activity-indicator {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.activity-text {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.activity-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.activity-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Success CTA */
.success-cta {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.success-cta .cta-content h3 {
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.success-cta .cta-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.success-cta .cta-btn {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: var(--space-4) var(--space-10);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    box-shadow: var(--shadow-teal);
}

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

/* Benefits Section */
.benefits-section {
    padding: var(--space-24) 0;
    background: var(--bg-secondary);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
}

.benefits-left {
    max-width: 500px;
}

.benefits-list {
    margin-top: var(--space-8);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    opacity: 0;
    transform: translateX(-30px);
}

.benefit-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    margin-bottom: var(--space-2);
    font-size: 1.125rem;
}

.benefit-content p {
    color: var(--text-secondary);
    margin: 0;
}

.benefits-right {
    display: flex;
    justify-content: center;
}

.earnings-showcase {
    max-width: 400px;
}

.earnings-card {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.earnings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
}

.earnings-header h3 {
    margin: 0;
}

.trend-indicator {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-color);
}

.earnings-chart {
    display: flex;
    align-items: end;
    gap: var(--space-4);
    height: 200px;
    margin-bottom: var(--space-8);
    padding: var(--space-4);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.chart-bar {
    flex: 1;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2);
    transition: all var(--transition-normal);
}

.chart-bar:hover {
    transform: scale(1.05);
}

.bar-value {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: auto;
}

.bar-label {
    position: absolute;
    bottom: -30px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.earnings-summary {
    border-top: 1px solid var(--gray-200);
    padding-top: var(--space-6);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-3);
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item .label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.summary-item .value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Apply Section */
.apply-section {
    padding: var(--space-24) 0;
    background: var(--bg-primary);
}

.apply-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.apply-header {
    margin-bottom: var(--space-12);
}

.apply-header h2 {
    margin-bottom: var(--space-4);
}

.apply-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
}

.apply-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-xl);
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
}

.apply-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.recruiter-info {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.recruiter-avatar {
    position: relative;
}

.recruiter-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-teal);
}

.online-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: var(--success-color);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.online-badge i {
    font-size: 0.5rem;
    color: var(--white);
}

.recruiter-details h3 {
    margin-bottom: var(--space-1);
    font-size: 1.25rem;
}

.recruiter-details p {
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    font-size: 0.875rem;
}

.availability {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.75rem;
    color: var(--primary-teal);
    font-weight: 500;
}

.quick-facts {
    display: flex;
    justify-content: space-around;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-8);
}

.fact-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.fact-item i {
    color: var(--primary-teal);
}

.contact-method {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--gray-200);
}

.contact-info {
    margin-bottom: var(--space-6);
}

.contact-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
}

.phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    background: var(--gray-50);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-teal);
    font-family: var(--font-display);
}

.copy-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-teal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: var(--teal-dark);
    transform: scale(1.1);
}

.apply-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    box-shadow: var(--shadow-teal);
}

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

.requirements-note {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
    padding: var(--space-4);
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: var(--info-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

.footer-brand .brand {
    margin-bottom: var(--space-6);
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-400);
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.link-group h4 {
    color: var(--white);
    margin-bottom: var(--space-4);
    font-size: 1rem;
}

.link-group a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: var(--space-3);
    font-size: 0.875rem;
    transition: color var(--transition-normal);
}

.link-group a:hover {
    color: var(--primary-teal);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: var(--space-8);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    15% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    85% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes drawLine {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .success-stories {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .story-metrics {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }
    
    .activity-header {
        flex-direction: column;
        gap: var(--space-3);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-6) 0;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu .nav-link {
        padding: var(--space-4) var(--space-6);
        border-bottom: 1px solid var(--gray-200);
        text-align: center;
    }
    
    .cta-btn-nav {
        margin: var(--space-4) var(--space-6);
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .story-card {
        padding: var(--space-6);
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
    
    .story-metrics {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
    }
    
    .live-stats-card,
    .global-activity,
    .success-cta {
        padding: var(--space-6);
        margin: var(--space-6) var(--space-4);
    }
    
    .quick-facts {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .hero-section {
        padding: var(--space-20) 0 var(--space-16);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .opportunity-card {
        padding: var(--space-6);
    }
    
    .timeline-item {
        padding-left: var(--space-12);
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
    
    .apply-card {
        padding: var(--space-6);
    }
    
    .recruiter-info {
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
    
    .phone-display {
        flex-direction: column;
        gap: var(--space-3);
    }
}

/* Loading States */
body:not(.loaded) .hero-left > * {
    opacity: 0;
    transform: translateY(30px);
}

/* Focus States for Accessibility */
.primary-btn:focus,
.secondary-btn:focus,
.copy-btn:focus,
.apply-btn:focus {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-teal: #0F4C4C;
        --text-primary: #000000;
        --text-secondary: #333333;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}