:root {
            --primary: #F96900;
            --primary-light: #FF8533;
            --primary-dark: #CC5500;
            --secondary: #65DEF1;
            --secondary-light: #8BE7F5;
            --secondary-dark: #3BBCCE;
            --dark: #1A1A1A;
            --dark-light: #2D2D2D;
            --white: #FFFFFF;
            --gray-100: #F8F9FA;
            --gray-200: #E9ECEF;
            --gray-300: #DEE2E6;
            --gray-400: #CED4DA;
            --gray-500: #ADB5BD;
            --gray-600: #6C757D;
            --gray-700: #495057;
            --gray-800: #343A40;
            --success: #28A745;
            --warning: #FFC107;
            --danger: #DC3545;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
            --shadow-xl: 0 24px 64px rgba(0,0,0,0.20);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--gray-100);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: var(--white);
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(249, 105, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(101, 222, 241, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(249, 105, 0, 0.02) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(1deg); }
            50% { transform: translateY(-10px) rotate(-1deg); }
            75% { transform: translateY(-30px) rotate(0.5deg); }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

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

        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.02em;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

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

        .nav-links {
            display: flex;
            gap: 1rem;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
            margin-left: auto;
        }

        .nav-links li {
            margin: 0;
        }

        .nav-links a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .nav-links a:hover::before {
            left: 0;
        }

        .nav-links a:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            color: var(--white);
        }

        .nav-links .btn-primary {
            background: var(--primary) !important;
            color: var(--white) !important;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            box-shadow: var(--shadow-md);
        }

        .nav-links .btn-primary::before {
            display: none !important;
        }

        .nav-links .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            background: var(--primary-dark) !important;
            color: var(--white) !important;
        }

        /* Mobile Navigation */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
            padding: 0.5rem;
        }

        @media (max-width: 968px) {
            .navbar {
                padding: 1rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(25px);
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
                box-shadow: var(--shadow-md);
                transform: translateY(-10px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-top: 1px solid rgba(0, 0, 0, 0.08);
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                width: 100%;
                padding: 1rem 2rem;
                border-radius: 0;
                justify-content: flex-start;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }

            .navbar {
                padding: 0.75rem 1rem;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            animation: heroFloat 25s ease-in-out infinite;
        }

        @keyframes heroFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(2deg); }
        }

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

        .floating-icon {
            position: absolute;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.15);
            animation: floatAround 20s linear infinite;
        }

        @keyframes floatAround {
            0% { 
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% { 
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        .floating-icon:nth-child(1) { left: 10%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { left: 20%; animation-delay: 3s; }
        .floating-icon:nth-child(3) { left: 30%; animation-delay: 6s; }
        .floating-icon:nth-child(4) { left: 40%; animation-delay: 9s; }
        .floating-icon:nth-child(5) { left: 50%; animation-delay: 12s; }
        .floating-icon:nth-child(6) { left: 60%; animation-delay: 15s; }
        .floating-icon:nth-child(7) { left: 70%; animation-delay: 18s; }
        .floating-icon:nth-child(8) { left: 80%; animation-delay: 21s; }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
            max-width: 900px;
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero h1 {
            font-size: clamp(3rem, 8vw, 5.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.3s both;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: var(--radius-xl);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

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

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

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

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            background: var(--gray-100);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .btn-secondary:hover {
            background: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-4px);
            color: var(--white);
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: var(--white);
            position: relative;
        }

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

        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .feature-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: var(--radius-lg);
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

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

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--primary-dark);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 6rem 2rem;
            background: var(--secondary);
            color: var(--white);
        }

        .how-it-works .section-header h2 {
            color: var(--white);
        }

        .how-it-works .section-header p {
            color: rgba(255, 255, 255, 0.9);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .step {
            position: relative;
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            color: var(--dark);
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 2;
            box-shadow: var(--shadow-md);
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 35px;
            right: -1.5rem;
            width: 3rem;
            height: 3px;
            background: var(--white);
            z-index: 1;
            border-radius: 2px;
        }

        .step h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .step p {
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Stats Section */
        .stats {
            padding: 6rem 2rem;
            background: var(--white);
            color: white;
        }

        .stats .section-header h2 {
            color: var(--primary);
        }

        .stats .section-header p {
            color: var(--primary);
        }

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

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--dark-light);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            background: var(--primary);
            border-color: var(--primary);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: var(--gray-100);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .cta-section p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            color: var(--gray-600);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .cta-section .btn-primary:hover {
            background: var(--primary-dark);
        }

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

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

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 4rem 2rem 2rem;
            text-align: center;
        }

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

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

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

        .social-links {
            margin: 2rem 0;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 1rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-400);
        }

        /* Loading Animations */
        .loading {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .loading.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                padding-top: 100px;
                min-height: 90vh;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .step:not(:last-child)::after {
                display: none;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

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

            .cta-section h2 {
                font-size: 2.5rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .features {
                padding: 4rem 1rem;
            }
            
            .how-it-works {
                padding: 4rem 1rem;
            }
            
            .stats {
                padding: 4rem 1rem;
            }
            
            .cta-section {
                padding: 4rem 1rem;
            }

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

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

                /* How It Works Section */
        .how-it-works {
            padding: 6rem 2rem;
            background: var(--gray-100);
            color: var(--dark);
        }

        .how-it-works .section-header h2 {
            color: var(--primary);
        }

        .how-it-works .section-header p {
            color: var(--gray-600);
        }

                .step {
            position: relative;
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            color: var(--dark);
            border: 1px solid rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .step:hover::before {
            transform: scaleX(1);
        }

        .step:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
        }

        /* How It Works Section with Floating Elements */
        .how-it-works {
            padding: 6rem 2rem;
            background: var(--gray-100);
            color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .how-it-works .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            top: 0;
            left: 0;
        }

        .how-it-works .floating-icon {
            position: absolute;
            font-size: 2rem;
            color: rgba(249, 105, 0, 0.1);
            animation: floatAround 25s linear infinite;
            opacity: 0;
            transform: translateY(100vh);
        }

        /* Animation for floating icons */
        @keyframes floatAround {
            0% { 
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% { 
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Position and delay for each floating icon */
        .how-it-works .floating-icon:nth-child(1) { left: 5%; animation-delay: 0s; }
        .how-it-works .floating-icon:nth-child(2) { left: 15%; animation-delay: 4s; }
        .how-it-works .floating-icon:nth-child(3) { left: 25%; animation-delay: 8s; }
        .how-it-works .floating-icon:nth-child(4) { left: 35%; animation-delay: 12s; }
        .how-it-works .floating-icon:nth-child(5) { left: 45%; animation-delay: 16s; }
        .how-it-works .floating-icon:nth-child(6) { left: 55%; animation-delay: 20s; }
        .how-it-works .floating-icon:nth-child(7) { left: 65%; animation-delay: 24s; }
        .how-it-works .floating-icon:nth-child(8) { left: 75%; animation-delay: 28s; }
        .how-it-works .floating-icon:nth-child(9) { left: 85%; animation-delay: 32s; }
        .how-it-works .floating-icon:nth-child(10) { left: 95%; animation-delay: 36s; }

        /* Ensure proper styling for the rest of the How It Works section */
        .how-it-works .section-header h2 {
            color: var(--primary);
        }

        .how-it-works .section-header p {
            color: var(--gray-600);
        }

        /* CTA Section with Floating Elements */
.cta-section {
    padding: 6rem 2rem;
    background: var(--gray-100);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    top: 0;
    left: 0;
    z-index: 1;
}

.cta-section .floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(249, 105, 0, 0.08);
    animation: floatAroundCTA 30s linear infinite;
    opacity: 0;
    transform: translateY(100vh);
}

/* Unique animation for CTA section */
@keyframes floatAroundCTA {
    0% { 
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% { 
        transform: translateY(-100px) rotate(-360deg);
        opacity: 0;
    }
}

/* Position and delay for each CTA floating icon */
.cta-section .floating-icon:nth-child(1) { left: 3%; animation-delay: 0s; }
.cta-section .floating-icon:nth-child(2) { left: 12%; animation-delay: 3s; }
.cta-section .floating-icon:nth-child(3) { left: 21%; animation-delay: 6s; }
.cta-section .floating-icon:nth-child(4) { left: 30%; animation-delay: 9s; }
.cta-section .floating-icon:nth-child(5) { left: 39%; animation-delay: 12s; }
.cta-section .floating-icon:nth-child(6) { left: 48%; animation-delay: 15s; }
.cta-section .floating-icon:nth-child(7) { left: 57%; animation-delay: 18s; }
.cta-section .floating-icon:nth-child(8) { left: 66%; animation-delay: 21s; }
.cta-section .floating-icon:nth-child(9) { left: 75%; animation-delay: 24s; }
.cta-section .floating-icon:nth-child(10) { left: 84%; animation-delay: 27s; }

/* Ensure CTA content stays above floating elements */
.cta-section h2,
.cta-section p,
.cta-section .cta-buttons {
    position: relative;
    z-index: 2;
}