/* ============================================
   NOMADS - PREMIUM SPECTACULAR LANDING PAGE
   ============================================ */

:root {
    /* Primary Colors */
    --primary-blue: #1D5B78;
    --primary-green: #9BA696;
    --primary-cream: #FFF9E8;
    --primary-beige: #F0EEE8;
    
    /* Accent Colors */
    --accent-blue: #7AB9C9;
    --accent-purple: #6A1B9A;
    --accent-orange: #FF6B35;
    --accent-gold: #D4AF37;
    
    /* Background Colors */
    --light-bg: #FAFAFA;
    --card-bg: #FFFFFF;
    --dark-bg: #0A0A0A;
    --dark-card: #1A1A1A;
    
    /* Text Colors */
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --text-muted: #BDC3C7;
    --text-light: #FFFFFF;
    
    /* Border Colors */
    --border-light: #E8E8E8;
    --border-dark: #333333;
    
    /* Shadows */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.4);
    
    /* Status Colors */
    --success: #27AE60;
    --warning: #F39C12;
    --error: #E74C3C;
    --info: #3498DB;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

body {
    cursor: none;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-blue);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease-out;
    opacity: 0.5;
}

/* ============================================
   ANIMATED BACKGROUND PARTICLES
   ============================================ */

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Navigation - GLASSMORPHISM
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 10100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(155, 166, 150, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.5);
    padding: 0.5rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(122, 185, 201, 0.8));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(122, 185, 201, 0.8)); }
    50% { filter: drop-shadow(0 0 30px rgba(155, 166, 150, 0.8)); }
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue), var(--accent-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
    font-weight: 900;
    letter-spacing: 2px;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.lang-selector {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 166, 150, 0.3);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.lang-selector:hover {
    border-color: var(--primary-green);
    background: rgba(155, 166, 150, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 166, 150, 0.3);
}

.lang-selector-compact {
    background: linear-gradient(135deg, rgba(29, 91, 120, 0.15), rgba(26, 26, 26, 0.8));
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(122, 185, 201, 0.3);
    color: var(--text-light);
    padding: 8px 14px 8px 32px;
    border-radius: 12px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    min-width: 80px;
    text-align: left;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(29, 91, 120, 0.2),
                inset 0 1px 3px rgba(122, 185, 201, 0.1);
    position: relative;
    overflow: visible;
}

.lang-selector-compact::before {
    content: '🌐';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
    pointer-events: none;
}

.lang-selector-compact:hover {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, rgba(122, 185, 201, 0.25), rgba(155, 166, 150, 0.2));
    box-shadow: 0 6px 20px rgba(122, 185, 201, 0.4),
                inset 0 2px 5px rgba(122, 185, 201, 0.15);
    transform: translateY(-2px);
}

.lang-selector-compact:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.lang-selector-compact:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(155, 166, 150, 0.2),
                0 6px 20px rgba(122, 185, 201, 0.4);
}

.btn-login {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    color: var(--text-light);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(122, 185, 201, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-login:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(122, 185, 201, 0.6);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ============================================
   Hero Section - SPECTACULAR
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

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

/* ANIMATED GRADIENT MESH */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: morphing 25s ease-in-out infinite;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-blue), var(--accent-blue), transparent);
    top: -250px;
    left: -250px;
    animation: morphing 20s ease-in-out infinite, rotate 40s linear infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-green), var(--primary-blue), transparent);
    bottom: -200px;
    right: -200px;
    animation: morphing 25s ease-in-out infinite reverse, rotate 50s linear infinite reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-blue), var(--primary-blue), transparent);
    top: 50%;
    right: 10%;
    animation: morphing 30s ease-in-out infinite, float 15s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        border-radius: 50% 50% 50% 50%;
    }
    25% { 
        transform: translate(40px, -40px) scale(1.1);
        border-radius: 60% 40% 60% 40%;
    }
    50% { 
        transform: translate(-30px, 30px) scale(0.9);
        border-radius: 40% 60% 40% 60%;
    }
    75% { 
        transform: translate(30px, 40px) scale(1.05);
        border-radius: 50% 50% 40% 60%;
    }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-30px) translateX(20px); }
    66% { transform: translateY(20px) translateX(-20px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease-out both;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue), var(--primary-blue));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: gradientShift 8s ease infinite;
    letter-spacing: -2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


.hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 0 20px rgba(122, 185, 201, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    color: var(--text-light);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(122, 185, 201, 0.5);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

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

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(122, 185, 201, 0.7);
}

.btn-primary.coming-soon {
    cursor: not-allowed;
    opacity: 0.8;
}

.btn-primary.coming-soon:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(122, 185, 201, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-green);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-green);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(155, 166, 150, 0.5);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.phone-mockup {
    position: relative;
    max-width: 100%;
    perspective: 1200px;
    display: flex;
    justify-content: center;
}

.device-frame {
    position: relative;
    width: clamp(200px, 24vw, 280px);
    padding: 12px 12px 20px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(29, 91, 120, 0.2));
    border: 2px solid rgba(155, 166, 150, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: phoneFloat 8s ease-in-out infinite;
}

.device-frame::after {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 27px;
    border: 1px solid rgba(122, 185, 201, 0.1);
    pointer-events: none;
}

.device-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.device-home-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    z-index: 2;
}

.device-screen {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.phone-mockup:hover .device-frame {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(29, 91, 120, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
    border-color: rgba(122, 185, 201, 0.5);
}

.phone-mockup:hover .device-screen {
    transform: scale(1.01);
}

.device-frame.phone {
    width: clamp(200px, 24vw, 280px);
}

.device-frame.tablet {
    width: clamp(220px, 28vw, 320px);
    padding: 16px 16px 24px;
    border-radius: 28px;
    animation: imageFloat 8s ease-in-out infinite;
}

.device-frame.tablet::after {
    border-radius: 23px;
}

.device-frame.tablet .device-notch {
    display: none;
}

.device-frame.tablet .device-home-indicator {
    bottom: 14px;
    width: 120px;
}

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

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(122, 185, 201, 0.4), transparent);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

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

/* SCROLL INDICATOR - ENHANCED */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeIn 1s ease-out 1s both;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 3px solid var(--primary-green);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(155, 166, 150, 0.5);
    animation: mouseGlow 2s ease-in-out infinite;
}

@keyframes mouseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(155, 166, 150, 0.5); }
    50% { box-shadow: 0 0 30px rgba(122, 185, 201, 0.8); }
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: linear-gradient(to bottom, var(--primary-green), var(--accent-blue));
    border-radius: 3px;
    animation: scrollDown 2s infinite;
}

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

/* ============================================
   FEATURES SECTION - PROFESSIONAL GRID LAYOUT
   ============================================ */

.features {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--accent-blue), var(--primary-green), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(155, 166, 150, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:last-child {
    grid-column: 1 / -1;
    max-width: 550px;
    margin: 0 auto;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(155, 166, 150, 0.4);
    box-shadow: 0 20px 40px rgba(29, 91, 120, 0.3);
    background: rgba(30, 30, 30, 0.8);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(29, 91, 120, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(122, 185, 201, 0.4);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--text-light);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-list li::before {
    content: '•';
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card:last-child {
        max-width: 100%;
    }
}

/* ============================================
   HOW IT WORKS SECTION - CLEAN TIMELINE
   ============================================ */

.how-it-works {
    padding: 100px 0;
    background: var(--dark-card);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--accent-blue), var(--primary-green), transparent);
}

.steps-container {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInLeft 0.6s ease-out backwards;
}

.step-number {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(155, 166, 150, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(155, 166, 150, 0.3), 0 0 20px rgba(122, 185, 201, 0.4);
}

.step-content {
    flex: 1;
    background: rgba(30, 30, 30, 0.6);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(155, 166, 150, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-item:hover .step-content {
    transform: translateX(8px);
    border-color: rgba(155, 166, 150, 0.3);
    box-shadow: 0 8px 24px rgba(29, 91, 120, 0.2);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* ============================================
   Download Section - MODERN
   ============================================ */

.download {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(122, 185, 201, 0.1), transparent 70%);
    animation: rotate 30s linear infinite;
}

.download-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.download-text {
    max-width: 700px;
}

.download-image {
    display: flex;
    justify-content: center;
}

.download-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: -1px;
}

.download-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 166, 150, 0.3);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(122, 185, 201, 0.2), transparent);
    transform: translateY(-50%);
    transition: left 0.6s;
}

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

.download-btn:hover {
    border-color: var(--primary-green);
    background: rgba(155, 166, 150, 0.2);
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 10px 30px rgba(122, 185, 201, 0.3);
}

.download-btn svg {
    width: 40px;
    height: 40px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.download-btn:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.download-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.download-coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(29, 91, 120, 0.2), rgba(155, 166, 150, 0.15));
    border: 2px solid rgba(155, 166, 150, 0.4);
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 15px 40px rgba(29, 91, 120, 0.4), 
                inset 0 2px 10px rgba(122, 185, 201, 0.15);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    animation: pulseGlow 3s ease-in-out infinite;
}

.coming-soon-pill:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 20px 50px rgba(122, 185, 201, 0.5), 
                inset 0 2px 10px rgba(122, 185, 201, 0.25);
    transform: translateY(-2px);
}

.coming-soon-pill::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    box-shadow: 0 0 15px rgba(122, 185, 201, 1),
                0 0 25px rgba(122, 185, 201, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(29, 91, 120, 0.4), 
                    inset 0 2px 10px rgba(122, 185, 201, 0.15);
    }
    50% {
        box-shadow: 0 20px 50px rgba(29, 91, 120, 0.6), 
                    inset 0 2px 15px rgba(122, 185, 201, 0.25);
    }
}

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

/* ============================================
   Footer - PREMIUM
   ============================================ */

.footer {
    background: linear-gradient(180deg, var(--dark-card) 0%, #000000 100%);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(155, 166, 150, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--accent-blue), var(--primary-green), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 620px;
    margin: 0 auto;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 16px rgba(122, 185, 201, 0.6));
}

.footer-tagline {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 480px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* ============================================
   Login Modal - GLASSMORPHISM
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    backdrop-filter: blur(20px);
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    padding: 3.5rem;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(155, 166, 150, 0.3);
    position: relative;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-light);
    transform: rotate(90deg) scale(1.2);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(122, 185, 201, 0.8));
    animation: logoGlow 3s ease-in-out infinite;
}

.modal-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input {
    padding: 15px 20px;
    background: rgba(10, 10, 10, 0.6);
    border: 2px solid rgba(155, 166, 150, 0.3);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(10, 10, 10, 0.8);
    box-shadow: 0 0 0 4px rgba(155, 166, 150, 0.2);
    transform: translateY(-2px);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
}

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

.forgot-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.forgot-link:hover {
    color: var(--primary-green);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    color: var(--text-light);
    border: none;
    padding: 16px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(122, 185, 201, 0.4);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(122, 185, 201, 0.6);
}

.form-divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(155, 166, 150, 0.3), transparent);
}

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

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

.form-divider span {
    color: var(--text-muted);
    background: transparent;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-social {
    padding: 14px;
    border: 2px solid rgba(155, 166, 150, 0.3);
    border-radius: 15px;
    background: rgba(10, 10, 10, 0.6);
    color: var(--text-light);
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-social:hover {
    border-color: var(--primary-green);
    background: rgba(155, 166, 150, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 185, 201, 0.3);
}

.form-footer {
    text-align: center;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-size: 1rem;
}

.signup-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: var(--primary-green);
}

/* ============================================
   Animations
   ============================================ */

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        padding-top: 120px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
        justify-self: center;
        margin-top: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-top: 1px solid rgba(155, 166, 150, 0.2);
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        margin-top: 2rem;
    }
    
    .coming-soon-pill {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .section-header {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .feature-icon {
        margin: 0 auto 1.5rem;
    }
    
    .feature-list {
        text-align: left;
        display: inline-block;
        margin: 0 auto;
    }

    .download-title {
        font-size: 2.2rem;
    }
    
    .download-description {
        font-size: 1.1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-top: 1px solid rgba(155, 166, 150, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        position: fixed;
        right: 5.5rem;
        top: 18px;
        gap: 0.5rem;
        z-index: 99;
    }
    
    .lang-selector-compact {
        font-size: 10px;
        padding: 5px 8px 5px 24px;
        min-width: 55px;
        border-radius: 8px;
    }
    
    .lang-selector-compact::before {
        font-size: 11px;
        left: 6px;
    }
    
    .btn-login {
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 20px;
    }

    .nav-toggle {
        display: flex;
        z-index: 100;
    }

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}

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

    .section-title {
        font-size: 2.2rem;
    }

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

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

    .modal-content {
        padding: 2rem;
    }
}

/* ============================================
   Additional Effects
   ============================================ */

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 3000;
    max-width: 400px;
    font-weight: 600;
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* Focus States */
a:focus,
button:focus,
input:focus,
select:focus {
    outline: 3px solid var(--accent-blue);
    outline-offset: 3px;
}

/* Selection */
::selection {
    background: var(--primary-green);
    color: var(--text-light);
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-green), var(--accent-blue));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-gold));
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .download-content,
[dir="rtl"] .footer-content {
    direction: rtl;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .modal,
    .scroll-indicator {
        display: none;
    }
}
