    * {
        font-family: 'Inter', sans-serif;
    }

    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        background: #ffffff;
        position: relative;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    body::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    body {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    /* Apply to html as well */
    html::-webkit-scrollbar {
        display: none;
    }

    html {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Animated background circles */
    .bg-shapes {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .circle {
        position: absolute;
        border-radius: 50%;
        animation: floatRandom 25s ease-in-out infinite;
    }

    .circle-1 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(19, 22, 242, 0.12) 0%, rgba(19, 22, 242, 0.04) 50%, transparent 100%);
        top: 10%;
        left: 5%;
        animation-duration: 20s;
        filter: blur(80px);
    }

    .circle-2 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.10) 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
        top: 60%;
        right: 10%;
        animation-duration: 25s;
        animation-delay: 5s;
        filter: blur(90px);
    }

    .circle-3 {
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(20, 184, 166, 0.10) 0%, rgba(20, 184, 166, 0.03) 50%, transparent 100%);
        bottom: 15%;
        left: 50%;
        animation-duration: 30s;
        animation-delay: 10s;
        filter: blur(100px);
    }

    .circle-4 {
        width: 380px;
        height: 380px;
        background: radial-gradient(circle, rgba(102, 126, 234, 0.10) 0%, rgba(102, 126, 234, 0.03) 50%, transparent 100%);
        top: 30%;
        right: 25%;
        animation-duration: 22s;
        animation-delay: 3s;
        filter: blur(85px);
    }

    .circle-5 {
        width: 420px;
        height: 420px;
        background: radial-gradient(circle, rgba(6, 182, 212, 0.10) 0%, rgba(6, 182, 212, 0.03) 50%, transparent 100%);
        bottom: 40%;
        left: 15%;
        animation-duration: 28s;
        animation-delay: 7s;
        filter: blur(95px);
    }

    .circle-6 {
        width: 360px;
        height: 360px;
        background: radial-gradient(circle, rgba(67, 70, 244, 0.10) 0%, rgba(67, 70, 244, 0.03) 50%, transparent 100%);
        top: 50%;
        left: 60%;
        animation-duration: 24s;
        animation-delay: 12s;
        filter: blur(90px);
    }

    @keyframes floatRandom {

        0%,
        100% {
            transform: translate(0px, 0px);
        }

        25% {
            transform: translate(30px, -40px);
        }

        50% {
            transform: translate(-20px, -80px);
        }

        75% {
            transform: translate(-40px, -40px);
        }
    }

    /* Content wrapper */
    .content-wrapper {
        position: relative;
        z-index: 1;
    }

    /* Custom color palette - Primary and variations */
    :root {
        /* Primary Blue */
        --primary: #1316f2;
        --primary-dark: #0f12d9;
        --primary-darker: #0a0db3;
        --primary-light: #4346f5;
        --primary-lighter: #7578f8;

        /* Secondary - Indigo */
        --secondary: #667eea;
        --secondary-dark: #5a67d8;
        --secondary-light: #818cf8;

        /* Accent - Violet */
        --accent-violet: #8b5cf6;
        --accent-violet-light: #a78bfa;

        /* Accent - Teal */
        --accent-teal: #14b8a6;
        --accent-teal-light: #2dd4bf;

        /* Accent - Cyan */
        --accent-cyan: #06b6d4;
        --accent-cyan-light: #22d3ee;
    }

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

    .bg-primary-light {
        background-color: var(--primary-light);
    }

    .bg-secondary {
        background-color: var(--secondary);
    }

    .bg-accent-violet {
        background-color: var(--accent-violet);
    }

    .bg-accent-teal {
        background-color: var(--accent-teal);
    }

    .text-primary {
        color: var(--primary);
    }

    .text-primary-light {
        color: var(--primary-light);
    }

    .text-secondary {
        color: var(--secondary);
    }

    .text-accent-violet {
        color: var(--accent-violet);
    }

    .text-accent-teal {
        color: var(--accent-teal);
    }

    .border-primary {
        border-color: var(--primary);
    }

    /* Hero section */
    .hero-gradient {
        background: transparent;
        position: relative;
        overflow: hidden;
    }

    /* Glassmorphism */
    .glass-card {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
        border-radius: 24px;
        transition: all 0.3s ease;
    }

    .glass-card:hover {
        background: rgba(255, 255, 255, 0.85);
        transform: translateY(-5px);
        box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15);
    }

    .glass-nav {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-hidden {
        transform: translateY(-100%);
        opacity: 0;
    }

    .glass-badge {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50px;
    }

    /* Smooth animations */
    .fade-in {
        animation: fadeIn 0.8s ease-in;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    .hover-scale {
        transition: transform 0.3s ease;
    }

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

    /* Feature cards */
    .feature-card {
        transition: all 0.3s ease;
        background-color: white;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(19, 22, 242, 0.15);
    }

    /* Pricing card */
    .pricing-card {
        transition: all 0.3s ease;
    }

    .pricing-card:hover {
        transform: translateY(-8px);
    }

    /* Button styles */
    .btn-primary {
        background-color: #1316f2;
        color: white;
        padding: 12px 32px;
        border-radius: 12px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .btn-primary:hover {
        background-color: #0f12d9;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(19, 22, 242, 0.4);
    }

    .btn-outline {
        background: transparent;
        color: white;
        padding: 12px 32px;
        border-radius: 12px;
        font-weight: 600;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
    }

    /* Badge */
    .badge {
        background: #FFD700;
        color: #0a2e36;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 700;
        display: inline-block;
    }

    /* Stats counter */
    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1a4d4d;
    }

    /* Mobile menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        z-index: 100;
        padding: 2rem;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile nav link animations */
    .mobile-nav-link {
        position: relative;
        padding: 12px 16px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .mobile-nav-link:hover {
        background: rgba(19, 22, 242, 0.05);
        color: #1316f2 !important;
        transform: translateX(8px);
    }

    /* Responsive typography */
    @media (max-width: 768px) {
        .stat-number {
            font-size: 1.8rem;
        }
    }

    /* Partners scroll animation */
    .partners-scroll {
        display: flex;
        overflow: hidden;
        position: relative;
    }

    .partners-track {
        display: flex;
        animation: scroll 30s linear infinite;
        width: max-content;
    }

    .partners-track:hover {
        animation-play-state: paused;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .partner-logo {
        flex-shrink: 0;
        padding: 0 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Float animation for hero cards */
    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

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

    /* Typing animation */
    .typing-text {
        border-right: 3px solid #1316f2;
        padding-right: 5px;
        animation: blink 0.7s step-end infinite;
        font-family: "Roboto Serif", serif;
        transition: color 0.3s ease;
    }

    @keyframes blink {

        0%,
        50% {
            border-color: currentColor;
        }

        51%,
        100% {
            border-color: transparent;
        }
    }

    .typing-text.typing {
        border-right: 3px solid currentColor;
    }

    .typing-text.waiting {
        border-right: 3px solid currentColor;
    }

    /* Navigation link animations */
    .nav-link {
        position: relative;
        padding-bottom: 4px;
        transition: color 0.3s ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #1316f2, #667eea);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-link:hover {
        color: #1316f2 !important;
    }

    /* Glass button for nav */
    .glass-button-primary {
        background: #1316f2;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px 0 rgba(19, 22, 242, 0.4);
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .glass-button-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 ease;
    }

    .glass-button-primary:hover::before {
        left: 100%;
    }

    .glass-button-primary:hover {
        background: #0f12d9;
        transform: translateY(-2px);
        box-shadow: 0 12px 40px 0 rgba(19, 22, 242, 0.6);
    }

    /* Hide number input spinners */
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    input[type="number"] {
        -moz-appearance: textfield;
        appearance: textfield;
    }

    /* FAQ accordion */
    .faq-item {
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-top: 0;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
        padding-top: 0;
    }

    .faq-icon {
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    /* Highlight nav item with gradient text and sparkle effect */
    .nav-link-highlight {
        position: relative;
        background: linear-gradient(135deg, #1316f2 0%, #667eea 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        padding-bottom: 4px;
        transition: all 0.3s ease;
        overflow: visible;
    }

    .nav-link-highlight::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #1316f2, #667eea, #1316f2);
        background-size: 200% 100%;
        animation: shimmer 2s linear infinite;
    }

    .nav-link-highlight::before {
        content: '';
        position: absolute;
        top: -8px;
        right: -16px;
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231316f2'%3E%3Cpath d='M12 2L9 9L2 12L9 15L12 22L15 15L22 12L15 9L12 2Z'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        animation: sparkle 2s ease-in-out infinite;
        pointer-events: none;
        z-index: 10;
    }

    .nav-link-highlight:hover {
        transform: translateY(-2px);
    }

    @keyframes shimmer {
        0% {
            background-position: -200% 0;
        }
        100% {
            background-position: 200% 0;
        }
    }

    /* Sparkle animation */
    @keyframes sparkle {
        0%, 100% {
            opacity: 0.3;
            transform: scale(0.8) rotate(0deg);
        }
        50% {
            opacity: 1;
            transform: scale(1.2) rotate(180deg);
        }
    }

    /* Mobile nav highlight */
    .mobile-nav-link-highlight {
        position: relative;
        background: linear-gradient(135deg, #1316f2 0%, #667eea 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        padding: 12px 16px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .mobile-nav-link-highlight::before {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 16px;
        right: 16px;
        height: 2px;
        background: linear-gradient(90deg, #1316f2, #667eea, #1316f2);
        background-size: 200% 100%;
        animation: shimmer 2s linear infinite;
    }

    .mobile-nav-link-highlight:hover {
        background: rgba(19, 22, 242, 0.05);
        transform: translateX(8px);
    }

    .mobile-nav-link-highlight {
        animation: pulse-glow 2s ease-in-out infinite;
    }

    /* App download button with shine effect */
    .app-download-button {
        position: relative;
        overflow: hidden;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .app-download-button::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;
    }

    .app-download-button:hover::before {
        left: 100%;
    }