import { motion } from "framer-motion"; import { MessageSquare, Clock, Shield } from "lucide-react"; export function Features() { const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.2 } } }; const itemVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6 } } }; return (

A New Standard for Practice

Everything you need to run your office, handled intuitively.

{/* Feature 1 */}

Real Intuitive Interface

Chat with our AI agent to check eligibility and claims using your own words. No clicking around. Increase your work efficiency more than 10 times.

{/* Feature 2 */}

24/7 Patient Connection

After-hours messaging and calling handled automatically by AI, in your way. Never miss any patient inquiry.

{/* Feature 3 */}

Your Data, Your Control

All patient data lives on your local computers. Automatic local and remote backup — always secure, always yours.

); }