Pricing

Page Type
Static Page
Meta Description

Cualia.io - Effortless performance evaluations for Medical Lab Analyzers

Meta Keywords

Meta Title

Cualia.io - Effortless performance evaluations for Medical Lab Analyzers

Path

/pricing

Publish

Pricing

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley.

icon

Free

Free usage of Cualia with limited features to see if it is right for you.

No credit card required

Create an audit ready report in minutes!

Free Includes:

  • 1 Lab and Department
  • 1 Analyzer
  • Unlimited Cualia MVs
  • 3 Tests per MV
  • Rich MV Exports and Sharing
  • Up to 3 team members
  • Access to our extensive TEa library

[Get Started]

icon

Core Plan

Cualia.io's Core Plan tier is designed for one lab with multiple departments.

$30 per member/month billed annually

$38 per month billed monthly

Everything in Free plus:

  • Unlimited Tests per MV
  • Unlimited Departments
  • Analyzer Library Access
  • Private MV Sharing
  • Remove PDF Watermarking
  • Department Level Permissions
  • 24/7 Email Support

[Buy now]

icon

Enterprise Plan

For organizations with multiple lab locations that need advanced access controls.

Get a tailored plan just for you!

Everything in Core plus:

  • Unlimited Labs and Departments
  • Client Onboarding
  • Priority Phone and Email Support
  • Advanced Permissions
  • Cualia PDF Branding Removal
  • Customized MV Templates
  • CSV/Excel Exports

[Contact Us]

FAQs

What is Cualia.io?
How can I ensure that final results are accurate?
How will Cualia help me with Performance Evaluation MVs?
Can I import my existing data?
What kind of reports will Cualia generate?
Can I request a demo of Cualia?
<div class="slider-container">
  <div class="slider" id="slider">
        <div class="slide"><img src="https://cdn11.bigcommerce.com/s-w9bdixgj/images/stencil/500x659/products/5122/11042/Globe_Scientific_1000mL_ASTM_Glass_Erlenmeyer_Flasks_8401000_For_Laboratory_Liquid_Storage_-_Lab_Glassware_-_Stellar_Scientific__02207.1652038131.jpg?c=2" alt="Image 1"></div>
        <div class="slide"><img src="https://cdn11.bigcommerce.com/s-w9bdixgj/images/stencil/500x659/products/5122/11042/Globe_Scientific_1000mL_ASTM_Glass_Erlenmeyer_Flasks_8401000_For_Laboratory_Liquid_Storage_-_Lab_Glassware_-_Stellar_Scientific__02207.1652038131.jpg?c=2" alt="Image 2"></div>
        <div class="slide"><img src="https://cdn11.bigcommerce.com/s-w9bdixgj/images/stencil/500x659/products/5122/11042/Globe_Scientific_1000mL_ASTM_Glass_Erlenmeyer_Flasks_8401000_For_Laboratory_Liquid_Storage_-_Lab_Glassware_-_Stellar_Scientific__02207.1652038131.jpg?c=2" alt="Image 3"></div>
    </div>
</div>
<div class="dots-container" id="dots-container"></div>

bullet:HTML
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Image Slider</title>
    <style>
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background-color: white; text-align: center; }
        .slider-container {
            width: 80%;
            max-width: 600px;
            margin: 50px auto;
            position: relative;
            overflow: hidden;
            border: 5px solid blue;
            border-radius: 10px;
        }
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            min-width: 100%;
        }
        .slide img {
            width: 100%;
            display: block;
        }
        .dots-container {
            text-align: center;
            margin-top: 10px;
        }
        .dot {
            height: 12px;
            width: 12px;
            margin: 5px;
            background-color: blue;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
        }
        .dot.active {
            background-color: darkblue;
        }
    </style>
</head>
<body>
    <div class="slider-container">
        <div class="slider" id="slider">
            <div class="slide"><img src="https://cdn11.bigcommerce.com/s-w9bdixgj/images/stencil/500x659/products/5122/11042/Globe_Scientific_1000mL_ASTM_Glass_Erlenmeyer_Flasks_8401000_For_Laboratory_Liquid_Storage_-_Lab_Glassware_-_Stellar_Scientific__02207.1652038131.jpg?c=2" alt="Image 1"></div>
            <div class="slide"><img src="https://cdn11.bigcommerce.com/s-w9bdixgj/images/stencil/500x659/products/5122/11042/Globe_Scientific_1000mL_ASTM_Glass_Erlenmeyer_Flasks_8401000_For_Laboratory_Liquid_Storage_-_Lab_Glassware_-_Stellar_Scientific__02207.1652038131.jpg?c=2" alt="Image 2"></div>
            <div class="slide"><img src="https://cdn11.bigcommerce.com/s-w9bdixgj/images/stencil/500x659/products/5122/11042/Globe_Scientific_1000mL_ASTM_Glass_Erlenmeyer_Flasks_8401000_For_Laboratory_Liquid_Storage_-_Lab_Glassware_-_Stellar_Scientific__02207.1652038131.jpg?c=2" alt="Image 3"></div>
        </div>
    </div>
    <div class="dots-container" id="dots-container"></div>

    <script>
        let index = 0;
        const slides = document.querySelectorAll(".slide");
        const slider = document.getElementById("slider");
        const dotsContainer = document.getElementById("dots-container");
        
        slides.forEach((_, i) => {
            const dot = document.createElement("span");
            dot.classList.add("dot");
            dot.addEventListener("click", () => moveSlide(i));
            dotsContainer.appendChild(dot);
        });
        
        function moveSlide(i) {
            index = i;
            slider.style.transform = `translateX(${-index * 100}%)`;
            updateDots();
        }
        
        function updateDots() {
            document.querySelectorAll(".dot").forEach((dot, i) => {
                dot.classList.toggle("active", i === index);
            });
        }
        
        updateDots();
    </script>
</body>
</html>
bullet:HTML