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

        :root {
            --primary: #E85A2A;
            --primary-dark: #D14922;
            --secondary: #004E89;
            --accent: #FFD23F;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --text-primary: #1A1A2E;
            --text-secondary: #4A5568;
            --gradient: linear-gradient(135deg, #E85A2A 0%, #FF6B35 100%);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--light);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
        }

        /* Hero Background Effect */
        .hero-bg {
            background: linear-gradient(180deg, #FFF5F0 0%, #FFFFFF 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radrgba(255, 107, 53, 0.34)ial-gradient(circle, rgba(255, 107, 53, 0.84) 0%, transparent 70%);
            top: -400px;
            right: -200px;
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 78, 137, 0.1) 0%, transparent 70%);
            bottom: -300px;
            left: -200px;
            border-radius: 50%;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(50px, 50px) rotate(180deg); }
        }

        /* Navigation */
        nav {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .logo {
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Buttons */
        .btn-primary {
            background: var(--gradient);
            color: white;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }

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

        .btn-primary:hover::before {
            transform: translateX(100%);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--dark);
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            border: 2px solid var(--dark);
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        /* Hero Section */
        .hero-title {
            font-size: 4.5rem;
            line-height: 1.8;
            font-weight: 700;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out;
            animation-delay: 0.2s;
            animation-fill-mode: backwards;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.8s ease-out;
            animation-delay: 0.4s;
            animation-fill-mode: backwards;
        }

        .hero-buttons {
            animation: fadeInUp 0.8s ease-out;
            animation-delay: 0.6s;
            animation-fill-mode: backwards;
        }

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

        /* Dashboard Preview */
        .dashboard-preview {
            animation: fadeInUp 1s ease-out;
            animation-delay: 0.8s;
            animation-fill-mode: backwards;
            position: relative;
        }

        .dashboard-preview img {
            border-radius: 20px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* Stats Section */
        .stat-card {
            text-align: center;
            padding: 2rem;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

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

        /* Feature Cards */
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
        }

        .feature-card:hover::before {
            opacity: 0.03;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            transition: transform 0.4s ease;
        }

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

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

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

        /* Pricing Cards */
        .pricing-card {
            background: white;
            border-radius: 24px;
            padding: 3rem 2rem;
            border: 2px solid #E5E5E5;
            transition: all 0.4s ease;
            position: relative;
        }

        .pricing-card.featured {
            background: var(--dark);
            color: white;
            transform: scale(1.05);
            border-color: var(--dark);
            box-shadow: 0 30px 80px rgba(26, 26, 46, 0.3);
        }

        .pricing-card.featured .pricing-price,
        .pricing-card.featured .pricing-name {
            color: white;
        }

        .pricing-card.featured .feature-item {
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-card:hover:not(.featured) {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
        }

        .pricing-badge {
            background: var(--gradient);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .pricing-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .pricing-period {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            padding: 0.75rem 0;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9375rem;
        }

        .feature-item::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            background: var(--dark);
            color: white;
            border-radius: 32px;
            padding: 5rem 3rem;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
            top: -250px;
            right: -250px;
            border-radius: 50%;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .cta-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-row{
            max-width: 40%;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: white;
            z-index: 9999;
            padding: 2rem;
            animation: slideInRight 0.3s ease-out;
        }

        .mobile-menu.active {
            display: flex;
            flex-direction: column;
        }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--dark);
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 4rem;
        }

        .mobile-menu-links a {
            font-size: 1.5rem;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

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

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 0.5rem;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.25rem;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 1rem;
                line-height: 1.6;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 0.875rem;
            }

            .feature-card {
                padding: 2rem 1.5rem;
            }

            .feature-title {
                font-size: 1.25rem;
            }

            .feature-description {
                font-size: 0.9375rem;
            }

            .pricing-card.featured {
                transform: scale(1);
                margin: 0;
            }

            .pricing-card {
                padding: 2rem 1.5rem;
            }

            .pricing-price {
                font-size: 3rem;
            }

            .cta-title {
                font-size: 2rem;
                line-height: 1.2;
            }

            .cta-subtitle {
                font-size: 1rem;
            }

            .cta-section {
                padding: 3rem 2rem;
                border-radius: 24px;
            }

            /* Button fixes for mobile */
            .hero-buttons {
                width: 100%;
            }

            .hero-buttons button {
                width: 100%;
                max-width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                padding: 16px 24px;
                font-size: 1rem;
                width: 100%;
            }

            /* Navigation mobile fix */
            nav .hidden {
                display: none !important;
            }

            .hamburger {
                display: flex;
            }

            /* Footer mobile fix */
            footer .grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            footer .col-span-2 {
                grid-column: span 1;
            }

            /* Stats grid mobile fix */
            .stats .grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .stat-card {
                padding: 1.5rem;
            }

            /* Pricing grid mobile fix */
            #pricing .grid {
                gap: 2rem;
            }
        }

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

            .stat-number {
                font-size: 2rem;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .pricing-price {
                font-size: 2.5rem;
            }

            .cta-title {
                font-size: 1.75rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 14px 20px;
                font-size: 0.9375rem;
            }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            animation: fadeIn 0.8s ease-out forwards;
        }

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

        .slide-up {
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease-out forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
