:root{
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #5a6475;

  --primary: #0B5BD3;     /* medical blue */
  --primary2:#0A4BB0;
  --accent: #E53935;      /* medical red accent */
  --soft: #F5F8FF;
  --border: #E7ECF5;

  --shadow: 0 12px 30px rgba(11, 91, 211, 0.10);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

.container{
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  background: #0b1220;
  color: rgba(255,255,255,.92);
  font-size: 13px;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0;
}
.topbar-left{ display:flex; align-items:center; gap:10px; }
.dot{
  width:10px; height:10px; border-radius:50%;
  background: #27d17c;
  box-shadow: 0 0 0 4px rgba(39,209,124,.15);
}
.topbar-right{ display:flex; gap:8px; flex-wrap:wrap; }
.badge{
  display:inline-flex; align-items:center; gap:6px;
  padding: 6px 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index: 10000;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: var(--soft);
  border: 1px solid var(--border);
  color: var(--primary);
}
.brand-name{
  font-weight: 800;
  letter-spacing:-.2px;
  font-size: 18px;
}
.brand-name span{ color: var(--accent); }
.brand-sub{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.brand.mini .brand-mark{ width:38px; height:38px; border-radius: 14px; }

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav a{
  color: #253047;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: var(--soft);
}

.header-cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.burger{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  cursor:pointer;
}
.burger i{ color:#111827; font-size: 18px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 18px;
  border-radius: 16px;               /* like screenshot */
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor:pointer;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
  white-space: nowrap;
}

.btn:active{ transform: translateY(1px); }
.btn-call{
  background: var(--primary);
  color:#fff;
  box-shadow: var(--shadow);
}
.btn-call:hover{ background: var(--primary2); }

.btn-outline{
  background:#fff;
  color:#111827;
  border-color: var(--border);
}
.btn-outline:hover{ background: var(--soft); }

.btn-primary{
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}
.btn-primary:hover{ background: var(--primary2); }
.btn-ghost{
  background: #fff;
  border-color: var(--border);
  color:#152038;
}
.btn-ghost:hover{ background: var(--soft); }
.w100{ width:100%; }

.iconBtn{
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  cursor:pointer;
}

/* Hero */
.hero{
  background:
    radial-gradient(900px 400px at 20% 10%, rgba(11,91,211,.10), transparent 60%),
    radial-gradient(900px 420px at 85% 25%, rgba(229,57,53,.08), transparent 55%),
    linear-gradient(#ffffff, #ffffff);
  padding: 42px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:start;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color:#22304a;
}
.hero-copy h1{
  margin: 14px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.8px;
}
.accent{ color: var(--primary); }
.lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
}
.trustRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0 16px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: 13px;
  color:#23314a;
}
.hero-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.hero-note{
  margin-top: 12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: #35445f;
  font-size: 13px;
}

/* Cards */
.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(14, 24, 40, 0.06);
}
.card.funnel{
  padding: 16px;
  position: sticky;
  top: 92px;
}
.cardHead{
  display:flex;
  gap:12px;
  align-items:center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.cardIcon{
  width:44px; height:44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: var(--soft);
  border: 1px solid var(--border);
  color: var(--primary);
}
.cardHead h2{ margin:0; font-size: 16px; }
.cardHead p{ margin:2px 0 0; color: var(--muted); font-size: 13px; }

/* Steps */
.stepTitle{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 14px;
  display:flex;
  align-items:center;
  gap:10px;
}
.stepNum{
  width:26px; height:26px;
  border-radius: 10px;
  display:grid; place-items:center;
  background: var(--soft);
  border:1px solid var(--border);
  color: var(--primary);
  font-size: 12px;
}
.segmented{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.segBtn{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-start;
  cursor:pointer;
  font-weight: 900;
  color:#1b2740;
}
.segBtn i{ color: var(--primary); }
.segBtn.active{
  border-color: rgba(11,91,211,.35);
  box-shadow: 0 10px 20px rgba(11,91,211,.10);
  background: var(--soft);
}
.field{ margin: 10px 0; }
label{
  display:block;
  font-weight: 900;
  font-size: 12px;
  color:#21304a;
  margin-bottom: 6px;
}
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 14px;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(11,91,211,.45);
  box-shadow: 0 0 0 4px rgba(11,91,211,.12);
}
.micro{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  display:flex;
  gap:8px;
  align-items:flex-start;
}
.hidden{ display:none !important; }

/* Sections */
.section{ padding: 54px 0; }
.section.alt{ background: #f8fbff; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.sectionHead{ margin-bottom: 18px; }
.sectionHead h2{ margin:0 0 6px; font-size: 28px; letter-spacing:-.4px; }
.sectionHead p{ margin:0; color: var(--muted); }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service{ padding: 18px; }
.serviceIcon{
  width:48px; height:48px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: var(--soft);
  border:1px solid var(--border);
  color: var(--primary);
  margin-bottom: 10px;
}
.service h3{ margin:0 0 6px; font-size: 16px; }
.service p{ margin:0 0 10px; color: var(--muted); }
.list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
  color:#263654;
  font-weight: 700;
  font-size: 13px;
}
.list i{ color: #22c55e; }

.ctaBand{
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.ctaBand h3{ margin:0 0 4px; font-size: 18px; letter-spacing:-.2px; }
.ctaBand p{ margin:0; color: var(--muted); }
.ctaBand-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* How */
.how{ padding: 18px; }
.howTop{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 10px; }
.howNum{
  font-weight: 900;
  color:#1c2b46;
  background:#fff;
  border:1px solid var(--border);
  border-radius: 12px;
  padding: 6px 10px;
}
.howTag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  border:1px solid var(--border);
  color:#20314c;
  font-weight: 900;
  font-size: 12px;
}
.how h3{ margin:0 0 6px; font-size: 16px; }
.how p{ margin:0; color: var(--muted); }

.stats{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align:center;
}
.statBig{
  font-weight: 900;
  font-size: 34px;
  letter-spacing:-.6px;
  color:#0d1a31;
}
.statBig span{ font-size: 14px; color: var(--muted); margin-left: 6px; }
.statSmall{ margin-top: 2px; color: var(--muted); font-weight: 700; }

/* FAQ */
.faq{ display:grid; gap: 10px; max-width: 860px; }
.faqItem{
  width:100%;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background:#fff;
  cursor:pointer;
  font-weight: 900;
}
.faqItem .q{ display:flex; align-items:center; gap:10px; }
.faqPanel{
  display:none;
  padding: 0 14px 14px;
  color: var(--muted);
}
.faqItem.open + .faqPanel{ display:block; }

/* Footer */
.footer{
  background: #0b1220;
  color: rgba(255,255,255,.92);
  padding: 46px 0 20px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .6fr .6fr;
  gap: 18px;
  align-items:start;
}
.footer-text{ color: rgba(255,255,255,.70); margin: 10px 0 14px; max-width: 54ch; }
.footer-col h4{ margin:0 0 10px; }
.footer-col a{ display:block; color: rgba(255,255,255,.78); padding: 6px 0; }
.footer-col a:hover{ color:#fff; }
.contactLine{ display:flex; gap:10px; align-items:center; color: rgba(255,255,255,.78); margin: 10px 0; }
.footer-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.footer-bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.footer-bottom a{ color: rgba(255,255,255,.70); }
.footer-bottom a:hover{ color:#fff; }
.sep{ opacity:.6; }

/* Mobile Menu */
.mobileMenu{
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 24, 0.60);
  display:none;
  padding: 18px;
}
.mobileMenu.show{ display:block; }
.mobileMenu-card{
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  padding: 14px;
}
.mobileMenu-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.mobileMenu-links{ display:grid; gap: 8px; padding: 12px 0; }
.mLink{
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid var(--border);
  background:#fff;
  font-weight: 900;
}
.mLink:hover{ background: var(--soft); }
.mobileMenu-actions{ display:grid; gap: 10px; padding-top: 10px; }
.miniNote{ margin: 0; color: var(--muted); font-size: 12px; display:flex; gap:8px; }

/* Mobile sticky bar */
.mobileBar{
  display:none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  padding: 10px 0 12px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.mobileBar-inner{
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:inline-grid; place-items:center; }
  .hero-grid{ grid-template-columns: 1fr; }
  .card.funnel{ position: static; }
}

@media (max-width: 720px){
  .topbar-right{ display:none; }
  .grid3{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .ctaBand{ flex-direction: column; align-items: flex-start; }
  .ctaBand-actions{ width:100%; }
  .ctaBand-actions .btn{ width:100%; }

  /* Mobile buttons: 100% width + margins handled by container */
  .hero-cta .btn{
    width:100%;
  }
  .hero-cta{
    width:100%;
  }
  .header-cta .btn{ display:none; } /* keep only burger on small */
  .mobileBar{ display:block; }
}

@media (max-width: 420px){
  .container{ width: calc(100% - 22px); }
  .btn{ padding: 12px 14px; }
  .segment
ed{ grid-template-columns: 1fr; }
}



.heroCard{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(14, 24, 40, 0.10);
  padding: 16px;
}

.heroCard-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 12px;
}

.heroBadge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--border);
  font-weight: 800;
  color:#23314a;
  font-size: 13px;
}

.heroBadge-red{
  background: #FFF1F1;
  border-color: #FFD6D6;
  color:#7A1A1A;
}

.dotRed{
  width:10px; height:10px;
  border-radius: 999px;
  background: var(--accent);
}

.heroCard-media{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--border);
}

.heroCard-media img{
  width:100%;
  height: 260px;
  object-fit: cover;
  display:block;
}

.heroCard-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.heroStat{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 10px;
  text-align:center;
}

.heroStat-big{
  font-weight: 900;
  font-size: 22px;
  color:#0d1a31;
}

.heroStat-small{
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.heroCard-dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 10px;
}

.heroCard-dots .dot{
  width:8px;
  height:8px;
  border-radius: 999px;
  background: #D7DEEA;
}

.heroCard-dots .dot.active{
  background: var(--primary);
}


@media (max-width: 720px){
  .hero-cta .btn{ width:100%; }
}
