@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
    }

    .bg-grid-slate-100 {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(241 245 249 / 0.1)'%3e%3cpath d='m0 16 16-16 16 16-16 16z'/%3e%3c/svg%3e");
    }

    /* Custom animations */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    .animate-float {
        animation: float 3s ease-in-out infinite;
    }

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

    /* Custom gradient backgrounds */
    .gradient-bg {
        background: linear-gradient(135deg, #7C3AED 0%, #10B981 100%);
    }

    /* Card hover effects */
    .feature-card {
        transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    /* Trust logo animations */
    .trust-logo {
        transition: all 0.3s ease;
    }

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

    /* Button animations */
    .btn-primary {
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.25);
    }

    /* Black Friday banner animation */
    @keyframes pulse-glow {
        0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.4); }
        50% { box-shadow: 0 0 30px rgba(124, 58, 237, 0.8); }
    }

    .black-friday-banner {
        animation: pulse-glow 2s ease-in-out infinite;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero-section {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }
    }