
/* Simple responsive CSS for medical-fintech aesthetic */
:root{
  --accent:#0b63ff;
  --bg:#f8fbff;
  --muted:#6b7280;
  --card:#ffffff;
  --radius:12px;
  --maxw:1100px;
}
*{box-sizing:border-box}
body{font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;margin:0;background:var(--bg);color:#0f172a;line-height:1.45}
.container{max-width:var(--maxw);margin:0 auto;padding:28px}
.header{display:flex;align-items:center;justify-content:space-between;padding:20px 0}
.brand{display:flex;align-items:center;gap:12px}
.logo{width:44px;height:44px;border-radius:8px;background:linear-gradient(135deg,var(--accent),#6dd5fa);display:flex;align-items:center;justify-content:center;color:white;font-weight:700}
.nav a{margin-left:18px;color:#0f172a;text-decoration:none;font-weight:600}
.hero{background:linear-gradient(180deg,white, #f3f7ff);padding:48px;border-radius:16px;display:flex;gap:32px;align-items:center}
.hero-left{flex:1}
.h1{font-size:32px;margin:0 0 12px}
.h2{font-size:18px;color:var(--muted);margin:0 0 18px}
.ctas{display:flex;gap:12px;margin-top:16px}
.btn{padding:12px 18px;border-radius:10px;text-decoration:none;font-weight:700;display:inline-block}
.btn-primary{background:var(--accent);color:white}
.btn-ghost{background:transparent;border:2px solid #e6eefc;color:var(--accent)}
.trust{margin-top:16px;color:var(--muted);font-size:14px}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin-top:20px}
.card{background:var(--card);padding:18px;border-radius:12px;box-shadow:0 6px 20px rgba(11,99,255,0.06)}
.footer{padding:28px 0;color:var(--muted);font-size:14px;text-align:center;margin-top:40px}
.table{width:100%;border-collapse:collapse;margin-top:12px}
.table th,.table td{border:1px solid #eef5ff;padding:10px;text-align:left}
.small{font-size:13px;color:var(--muted)}
.badge{display:inline-block;background:#eef6ff;color:var(--accent);padding:6px 10px;border-radius:999px;font-weight:700}
.hero-right{width:360px;background:linear-gradient(180deg,#ffffff,#f7fbff);padding:18px;border-radius:12px}
.stat{font-size:28px;font-weight:800;color:var(--accent)}
.center{text-align:center}
.logo-img{height:28px;vertical-align:middle}
.note{font-size:13px;color:var(--muted);margin-top:8px}
@media(max-width:800px){.hero{flex-direction:column}.hero-right{width:100%}}
