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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0D1117;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Gradient backgrounds */
.gradient-hero {
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15), transparent 60%),
                radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.1), transparent 60%);
}

.gradient-blue-purple {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-light {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    color: #FFFFFF;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #3B82F6;
    background: rgba(59, 130, 246, 0.1);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section headers */
.section-header-line {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8B5CF6;
    font-weight: 600;
    margin-bottom: 12px;
}

* {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        body {
            background: #0D1117;
            color: #FFFFFF;
            overflow-x: hidden;
        }
        
        /* Gradient backgrounds */
        .gradient-hero {
            background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15), transparent 60%),
                        radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.1), transparent 60%);
        }
        
        .gradient-blue-purple {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
        }
        
        .gradient-purple-teal {
            background: linear-gradient(135deg, #8B5CF6 0%, #2DD4BF 100%);
        }
        
        .gradient-blue-teal {
            background: linear-gradient(135deg, #3B82F6 0%, #2DD4BF 100%);
        }
        
        .gradient-cta {
            background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #2DD4BF 100%);
        }
        
        /* Glassmorphism */
        .glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .glass-light {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #3B82F6, #8B5CF6);
            color: #FFFFFF;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
        }
        
        .btn-primary::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-primary:hover::before {
            left: 100%;
        }
        
        .btn-secondary {
            background: transparent;
            color: #FFFFFF;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #3B82F6;
            transform: translateY(-2px);
        }
        
        /* Cards */
        .card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.08);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
            background: rgba(255, 255, 255, 0.05);
        }
        
        /* Feature Icons */
        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .icon-blue {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.2));
            color: #3B82F6;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }
        
        .icon-purple {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.2));
            color: #8B5CF6;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }
        
        .icon-teal {
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(45, 212, 191, 0.2));
            color: #2DD4BF;
            border: 1px solid rgba(45, 212, 191, 0.2);
        }
        
        .card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        /* USP Section */
        .usp-item {
            display: flex;
            align-items: start;
            gap: 24px;
            padding: 32px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }
        
        .usp-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateX(8px);
        }
        
        .usp-icon {
            width: 72px;
            height: 72px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            flex-shrink: 0;
        }
        
        /* Pricing Cards */
        .pricing-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            min-height: 600px;
        }
        
        .pricing-card .pricing-content {
            flex: 1;
        }
        
        .pricing-card .pricing-footer {
            margin-top: auto;
        }
        
        .pricing-card:hover {
            transform: translateY(-12px);
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 24px 72px rgba(59, 130, 246, 0.2);
        }
        
        .pricing-card.featured {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border: 2px solid #8B5CF6;
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
        }
        
        .pricing-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #8B5CF6, #3B82F6);
            color: white;
            padding: 8px 24px;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 16px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
            table-layout: fixed;
        }
        
        .comparison-table thead {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .comparison-table th {
            padding: 24px;
            text-align: center;
            font-weight: 700;
            border-bottom: 2px solid rgba(59, 130, 246, 0.2);
            font-size: 18px;
            width: 25%;
            vertical-align: middle;
            height: 100px;
            position: relative;
        }
        
        .comparison-table th:first-child {
            text-align: left;
        }
        
        .comparison-table th.highlight {
            background: linear-gradient(180deg, rgba(59, 130, 246, 0.04), rgba(139, 92, 246, 0.04));
            border-left: 1px solid rgba(59, 130, 246, 0.15);
            border-right: 1px solid rgba(59, 130, 246, 0.15);
            position: relative;
        }
        
        .comparison-table tbody tr {
            transition: background 0.2s ease;
        }
        
        .comparison-table tbody tr:nth-child(odd) {
            background: rgba(255, 255, 255, 0.02);
        }
        
        .comparison-table tbody tr:hover {
            background: rgba(59, 130, 246, 0.05);
        }
        
        .comparison-table td {
            padding: 20px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            vertical-align: middle;
        }
        
        .comparison-table td:first-child {
            text-align: left;
        }
        
        .comparison-table td.highlight {
            background: linear-gradient(180deg, rgba(59, 130, 246, 0.03), rgba(139, 92, 246, 0.03));
            border-left: 1px solid rgba(59, 130, 246, 0.15);
            border-right: 1px solid rgba(59, 130, 246, 0.15);
            font-weight: 600;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            padding: 40px 0;
        }
        
        .timeline-item {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 20px 0;
            position: relative;
        }
        
        .timeline-item:first-child .timeline-line-segment {
            top: 50%;
        }
        
        .timeline-item:last-child .timeline-line-segment {
            bottom: 50%;
        }
        
        .timeline-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }
        
        .timeline-content {
            flex: 1;
        }
        
        .timeline-line-segment {
            position: absolute;
            left: 27px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, #3B82F6, #8B5CF6, #2DD4BF);
            opacity: 0.3;
            z-index: 1;
        }
        
        /* FAQ Accordion */
        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: rgba(59, 130, 246, 0.3);
        }
        
        .faq-question {
            padding: 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: #3B82F6;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 24px;
        }
        
        .faq-answer.active {
            max-height: 500px;
            padding: 0 24px 24px 24px;
        }
        
        .faq-icon {
            transition: transform 0.3s ease;
            color: #3B82F6;
        }
        
        .faq-icon.active {
            transform: rotate(180deg);
        }
        
        /* Trust Indicators */
        .trust-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            font-size: 13px;
            color: #E5E7EB;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Table Badge */
        .table-badge {
            position: absolute;
            top: 6px;
            left: 6px;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #2DD4BF, #3B82F6);
            color: white;
        }
        
        /* Icons */
        .check-icon {
            color: #2DD4BF;
        }
        
        .cross-icon {
            color: #EF4444;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        nav.scrolled {
            background: rgba(13, 17, 23, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .gradient-animate {
            background-size: 200% 200%;
            animation: gradient-shift 8s ease infinite;
        }
        
        @keyframes pulse-glow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        
        .pulse-glow {
            animation: pulse-glow 3s ease-in-out infinite;
        }
        
        /* Particles */
        .particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.3;
        }
        
        .particle-1 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
            top: 10%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }
        
        .particle-2 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent);
            top: 60%;
            right: 10%;
            animation: float 10s ease-in-out infinite reverse;
        }
        
        .particle-3 {
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(45, 212, 191, 0.15), transparent);
            bottom: 20%;
            left: 15%;
            animation: float 7s ease-in-out infinite;
        }
        
        /* Section spacing */
        section {
            scroll-margin-top: 100px;
        }
        
        /* Fade in on scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Section header line */
        .section-header-line {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #8B5CF6;
            font-weight: 600;
            margin-bottom: 12px;
        }

        /* Hamburger base */
        .hamburger {
            width: 32px;
            height: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background: #ffffff;
            border-radius: 5px;
            transition: all 0.35s ease;
        }

        /* Animated transform to X */
        .mobile-nav-active .hamburger span:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }
        .mobile-nav-active .hamburger span:nth-child(2) {
            opacity: 0;
        }
        .mobile-nav-active .hamburger span:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }

        /* Hide desktop menu on mobile */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-nav-active .nav-links {
                display: flex !important;
                position: absolute;
                top: 70px;
                right: 20px;
                background: rgba(20, 20, 20, 0.95);
                padding: 20px;
                border-radius: 12px;
                flex-direction: column;
                gap: 1rem;
                z-index: 1000;
            }
        }

        /* Animation when active */
        .mobile-nav-active .hamburger span:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }

        .mobile-nav-active .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .mobile-nav-active .hamburger span:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }

        /*Table Animation */
        .table-wrapper {
            overflow-x: auto;
            overflow-y: hidden !important;
            -webkit-overflow-scrolling: touch;
            width: 100%;
            padding-bottom: 10px;
            max-height: 100%;
            display: block;
        }

        .comparison-table {
            min-width: 700px; /* prevents squishing */
            border-collapse: collapse;
        }

