/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary: #db7c26;
    --primary-dark: #c32f27;
    --secondary: #ebf5ee;
    --dark-bg: #0a0908;
    --darker-bg: #000000;
    --card-bg: #1a1918;
    --card-hover: #2a2928;
    --text-primary: #fefcfd;
    --text-muted: #b8b6b7;
    --text-secondary: #e8e6e7;
    --border: rgba(254, 252, 253, 0.08);
    --border-hover: rgba(219, 124, 38, 0.3);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 60px rgba(219, 124, 38, 0.3);
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, #1A1F2E 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-wrapper {
    position: relative;
    overflow-x: hidden;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 14, 21, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(10, 14, 21, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(94, 234, 212, 0.3);
}

.logo-text {
    background: linear-gradient(135deg, var(--primary) 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark-bg);
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.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 ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(94, 234, 212, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 150px 20px 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.3) 0%, transparent 70%);
    top: -300px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.15) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid var(--border-hover);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    0% { transform: scale(1); opacity: 1; }
    75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(94, 234, 212, 0); }
}

.hero-title {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% auto;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-description {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-description strong {
    color: var(--primary);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-on-scroll.delay-1 {
    transition-delay: 0.2s;
}

.reveal-on-scroll.delay-2 {
    transition-delay: 0.4s;
}

.reveal-on-scroll.delay-3 {
    transition-delay: 0.6s;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 80px 20px;
    background: linear-gradient(145deg, var(--card-bg), var(--card-hover));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    background: rgba(94, 234, 212, 0.05);
    border-color: var(--border-hover);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(94, 234, 212, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(94, 234, 212, 0.3);
}

.stat-number {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-description {
    color: var(--text-muted);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 100px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, var(--card-bg), var(--card-hover));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(145deg, var(--card-hover), #1A2332);
}

.feature-icon-wrapper {
    margin-bottom: 25px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(94, 234, 212, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(94, 234, 212, 0.4);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 100px 20px;
    background: var(--card-bg);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: linear-gradient(145deg, var(--dark-bg), var(--card-hover));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(94, 234, 212, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(94, 234, 212, 0.3);
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--secondary);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ============================================
   APP DOWNLOAD SECTION
   ============================================ */
.app-download {
    padding: 100px 20px;
}

.app-download-content {
    background: linear-gradient(145deg, var(--card-bg), var(--card-hover));
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.app-download-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.app-download-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 20px;
}

.app-download-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 16px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #007BFF, #00C6FF);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.5);
}

.app-download-note {
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.app-download-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1A1F2E, #0A0E15);
    border-radius: 40px;
    border: 8px solid #2A2F3E;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #1A1F2E;
    border-radius: 3px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 32px;
    opacity: 0.3;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 20px;
}

.cta-box {
    background: linear-gradient(145deg, var(--card-bg), var(--card-hover));
    border: 1px solid var(--border-hover);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 15s ease-in-out infinite;
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.cta-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-description {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 20px 30px;
    background: var(--darker-bg);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(94, 234, 212, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 80px);
    background: rgba(10, 14, 21, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    padding: 30px;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-link {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .app-download-content {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .app-download-visual {
        order: -1;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-connector {
        width: 2px;
        height: 60px;
        transform: rotate(90deg);
    }
    
    .step-connector::after {
        right: auto;
        bottom: -6px;
        top: auto;
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn,
    .mobile-menu-overlay,
    .mobile-nav {
        display: flex;
    }
    
    .hero {
        padding: 120px 20px 80px;
        min-height: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-box {
        padding: 50px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
}
/* ============================================
   FOOTER ADDITIONAL STYLES
   ============================================ */

.footer-trust-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-badge {
    background: rgba(94, 234, 212, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(94, 234, 212, 0.2);
}

.footer-connect-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Newsletter Form */
.footer-newsletter {
    margin-top: 25px;
}

.newsletter-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(94, 234, 212, 0.4);
}

/* Footer Bottom */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-bottom-links .separator {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(94, 234, 212, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(94, 234, 212, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .trust-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .social-links {
        flex-wrap: wrap;
    }
    
    .footer-trust-badges {
        justify-content: center;
    }
}

/* ============================================
   ENHANCED NAVBAR STYLES
   ============================================ */

/* Mobile Navigation Header */
.mobile-nav-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
}

.mobile-nav-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Navigation Links Container */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
}

/* Enhanced Mobile Navigation Links */
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--primary);
    background: rgba(94, 234, 212, 0.05);
    border-color: var(--border);
    transform: translateX(5px);
}

.mobile-nav-link:hover::before {
    transform: scaleY(1);
}

.mobile-nav-link svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

/* Mobile CTA Button in Menu */
.mobile-nav .mobile-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
}

/* Mobile Navigation Footer */
.mobile-nav-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.mobile-nav-footer p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.mobile-social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: rgba(94, 234, 212, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Desktop Navigation Active State */
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

/* Navigation Scroll Effect Enhancement */
.header.scrolled .logo-icon {
    box-shadow: 0 2px 10px rgba(94, 234, 212, 0.4);
}

.header.scrolled .nav-link {
    color: var(--text-secondary);
}

/* Mobile Menu Animation States */
.mobile-nav {
    display: flex;
    flex-direction: column;
}

/* Stagger Animation for Mobile Menu Items */
.mobile-nav.active .mobile-nav-link {
    animation: slideInRight 0.3s ease forwards;
    opacity: 0;
}

.mobile-nav.active .mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav.active .mobile-nav-link:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav.active .mobile-nav-link:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Desktop Button SVG Animation */
.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

/* Notification Dot for New Features (Optional) */
.nav-link-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--dark-bg);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.7);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(94, 234, 212, 0);
    }
}

/* Dropdown Menu Support (if needed) */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.nav-dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-dropdown-item:hover {
    background: rgba(94, 234, 212, 0.1);
    color: var(--primary);
    padding-left: 20px;
}

/* Search Bar in Navigation (Optional) */
.nav-search {
    position: relative;
    margin: 0 15px;
}

.nav-search-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 35px 8px 15px;
    color: var(--text-primary);
    font-size: 14px;
    width: 200px;
    transition: all 0.3s ease;
}

.nav-search-input:focus {
    outline: none;
    width: 250px;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.nav-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* User Profile in Navigation (Optional) */
.nav-user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-user-profile:hover {
    background: rgba(94, 234, 212, 0.1);
}

.nav-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-bg);
}

.nav-user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-search-input {
        width: 150px;
    }
    
    .nav-search-input:focus {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .mobile-nav {
        width: 100%;
        max-width: 400px;
    }
    
    .mobile-nav-link {
        font-size: 15px;
        padding: 14px 18px;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
    
    .mobile-nav.active {
        right: 0;
    }
}

/* Loading State for Navigation */
.nav-loading {
    position: relative;
    pointer-events: none;
}

.nav-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(94, 234, 212, 0.3);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Accessibility Improvements */
.nav-link:focus,
.mobile-nav-link:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--dark-bg);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Print Styles */
@media print {
    .header,
    .mobile-menu-btn,
    .mobile-nav,
    .back-to-top,
    .cta,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --border: rgba(255, 255, 255, 0.3);
        --border-hover: rgba(94, 234, 212, 0.8);
    }
    
    .nav-link,
    .mobile-nav-link {
        border: 1px solid transparent;
    }
    
    .nav-link:hover,
    .mobile-nav-link:hover {
        border-color: var(--primary);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .gradient-orb,
    .badge-dot,
    .scroll-indicator {
        animation: none;
    }
}

/* ============================================
   TRADING DASHBOARD BACKGROUND ANIMATION
   Add this to the end of your style.css file
   ============================================ */

.trading-dashboard {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.12;
    pointer-events: none;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 15px;
    z-index: 0;
}

.chart-section {
    background: linear-gradient(145deg, rgba(26, 25, 24, 0.9), rgba(42, 41, 40, 0.8));
    border: 1px solid rgba(254, 252, 253, 0.08);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.chart-title {
    font-size: 16px;
    font-weight: 700;
    color: #fefcfd;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-price {
    font-size: 20px;
    font-weight: 800;
    color: #10b981;
}

.price-change {
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.price-change.negative {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.chart-canvas {
    width: 100%;
    height: calc(100% - 60px);
    position: relative;
    min-height: 300px;
}

.candlestick {
    position: absolute;
    bottom: 0;
    width: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: growCandle 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes growCandle {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.wick {
    width: 2px;
    background: currentColor;
}

.candle-body {
    width: 100%;
    border-radius: 2px;
    margin: 2px 0;
}

.bullish {
    color: #10b981;
}

.bullish .candle-body {
    background: #10b981;
    border: 1px solid #059669;
}

.bearish {
    color: #ef4444;
}

.bearish .candle-body {
    background: #ef4444;
    border: 1px solid #dc2626;
}

.orderbook {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.orderbook-section {
    background: linear-gradient(145deg, rgba(26, 25, 24, 0.9), rgba(42, 41, 40, 0.8));
    border: 1px solid rgba(254, 252, 253, 0.08);
    border-radius: 16px;
    padding: 15px;
    flex: 1;
}

.section-title {
    font-size: 13px;
    font-weight: 700;
    color: #b8b6b7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(254, 252, 253, 0.04);
    font-size: 12px;
    position: relative;
    animation: slideInOrder 0.5s ease forwards;
    opacity: 0;
}

@keyframes slideInOrder {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.order-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: currentColor;
    opacity: 0.1;
    transition: width 0.3s ease;
}

.order-row.animate-fill::before {
    width: 100%;
}

.order-price {
    font-weight: 700;
}

.buy-order {
    color: #10b981;
}

.sell-order {
    color: #ef4444;
}

.order-amount {
    color: #e8e6e7;
    text-align: center;
}

.order-total {
    color: #b8b6b7;
    text-align: right;
}

.ticker-tape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 9, 8, 0.95);
    border-bottom: 1px solid rgba(254, 252, 253, 0.08);
    padding: 10px 0;
    overflow: hidden;
    z-index: 0;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.ticker-symbol {
    font-weight: 700;
    color: #fefcfd;
}

.ticker-price {
    color: #e8e6e7;
}

.ticker-change {
    font-weight: 600;
}

.ticker-change.positive {
    color: #10b981;
}

.ticker-change.negative {
    color: #ef4444;
}

.volume-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 60px;
    margin-top: 10px;
}

.volume-bar {
    flex: 1;
    background: linear-gradient(to top, #db7c26, #c32f27);
    border-radius: 2px 2px 0 0;
    opacity: 0.3;
    transition: all 0.3s ease;
    animation: growBar 0.6s ease-out forwards;
}

.volume-bar.active {
    opacity: 0.8;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

/* Responsive adjustments for trading dashboard */
@media (max-width: 1200px) {
    .trading-dashboard {
        grid-template-columns: 1fr;
    }

    .orderbook {
        display: none;
    }
}

@media (max-width: 768px) {
    .trading-dashboard {
        padding: 10px;
        opacity: 0.08;
    }

    .chart-section {
        padding: 15px;
    }

    .current-price {
        font-size: 16px;
    }

    .ticker-tape {
        padding: 8px 0;
    }

    .ticker-item {
        font-size: 11px;
        gap: 6px;
    }
}