Run your clinic with confidence. Real-time safety alerts, compliant audit trails, and unified oversight — all in one powerful platform.
@php
$features = [
['tone' => 'good', 'icon' => 'chart', 'title' => 'Traffic-light minute tracking', 'desc' => 'Live billing status at a glance.', 'delay' => '0.36s'],
['tone' => 'critical', 'icon' => 'bell', 'title' => 'Safety escalation in seconds', 'desc' => 'Real-time alerts that keep patients safe.', 'delay' => '0.42s'],
['tone' => 'orange', 'icon' => 'shield', 'title' => 'Every PHI access, logged and exportable', 'desc' => 'Immutable audit trail for complete accountability.', 'delay' => '0.48s'],
];
$toneClasses = [
'good' => ['bg' => 'bg-status-good/10', 'text' => 'text-status-good', 'dot' => 'bg-status-good', 'hoverBorder' => 'hover:border-status-good/30'],
'critical' => ['bg' => 'bg-status-critical/10', 'text' => 'text-status-critical', 'dot' => 'bg-status-critical', 'hoverBorder' => 'hover:border-status-critical/30'],
'orange' => ['bg' => 'bg-brand-orange-muted', 'text' => 'text-brand-orange', 'dot' => 'bg-brand-orange', 'hoverBorder' => 'hover:border-brand-orange/30'],
];
@endphp
@foreach ($features as $feature)
@php $tone = $toneClasses[$feature['tone']]; @endphp
@if ($feature['icon'] === 'chart')
@elseif ($feature['icon'] === 'bell')
@else
@endif
{{ $feature['title'] }}
{{ $feature['desc'] }}
@endforeach