@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap");

:root{
  --navy:#1B3464;
  --blue:#1572B6;
  --teal:#1E8FC1;
  --char:#2C3038;
  --bg:#F2F6FB;
  --light:#EEF3FA;
  --white:#FFFFFF;
  --text:#1A1F2E;
  --mid:#394F6A;
  --slate:#6A7F98;
  --line:rgba(27,52,100,.11);
  --shadow:0 8px 32px rgba(27,52,100,.08);
  --max:1180px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;max-width:100%;overflow-x:hidden}
body{
  margin:0;
  max-width:100%;
  overflow-x:hidden;
  background:var(--bg);
  color:var(--text);
  font-family:"DM Sans",Inter,Arial,sans-serif;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img,svg,video,iframe{max-width:100%;height:auto}
a{color:var(--blue);text-decoration:none}
a:hover{text-decoration:none}
.wrap{width:min(var(--max),calc(100% - 36px));margin-inline:auto}

/* Header aligned with the OzaniX healthcare homepage */
.kc-site-header{
  position:sticky;
  top:0;
  z-index:999;
  height:72px;
  background:rgba(255,255,255,.97);
  border-bottom:1px solid var(--line);
  box-shadow:0 2px 20px rgba(27,52,100,.04);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}
.kc-nav{
  width:100%;
  height:72px;
  display:flex;
  align-items:center;
  gap:28px;
  padding:0 48px;
}
.kc-brand{display:flex;flex:0 0 auto;align-items:center}
.kc-brand img{display:block;width:auto;height:58px;object-fit:contain}
.main-menu{
  display:flex;
  flex:1 1 auto;
  min-width:0;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin:0;
}
.main-menu a{
  white-space:nowrap;
  padding:0 0 2px;
  border-bottom:1.5px solid transparent;
  color:var(--mid);
  font-family:"DM Sans",sans-serif;
  font-size:12px;
  font-weight:400;
  letter-spacing:.15px;
  transition:.2s ease;
}
.main-menu a:hover,
.main-menu a.active{
  color:var(--navy);
  border-bottom-color:var(--blue);
}
.kc-nav-actions{
  display:flex;
  flex:0 0 auto;
  align-items:center;
  gap:18px;
  white-space:nowrap;
}
.kc-global-link{
  color:var(--navy);
  font-family:"DM Sans",sans-serif;
  font-size:16px;
  font-weight:400;
}
.kc-global-link span{color:var(--blue)}
.nav-cta,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:3px;
  font-family:"Rajdhani",sans-serif;
  font-weight:700;
  text-transform:uppercase;
}
.nav-cta{
  padding:10px 26px;
  background:var(--navy);
  color:#fff;
  font-size:11px;
  letter-spacing:2.5px;
}
.nav-cta:hover{background:var(--blue);color:#fff}
.nav-tagline,
.nav-mobile{
  display:none;
}
.nav-burger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:36px;
  height:36px;
  padding:6px;
  border:0;
  background:transparent;
  cursor:pointer;
  z-index:1001;
}
.nav-burger span{
  display:block;
  width:24px;
  height:2px;
  border-radius:2px;
  background:var(--navy);
  transition:transform .3s,opacity .3s;
}
.nav-burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-burger.open span:nth-child(2){opacity:0}
.nav-burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.nav-mobile{
  position:fixed;
  top:72px;
  left:0;
  right:0;
  z-index:998;
  max-height:calc(100dvh - 72px);
  overflow-y:auto;
  overscroll-behavior:contain;
  border-bottom:1px solid var(--line);
  background:#fff;
  box-shadow:0 8px 32px rgba(27,52,100,.1);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(-8px);
  transition:transform .3s ease,opacity .3s ease;
}
.nav-mobile.open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}
.nav-mobile-brand{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:18px 28px;
  background:var(--navy);
}
.nav-mobile-tagline{
  position:relative;
  z-index:2;
  color:#fff;
  font:italic 300 17px/1.3 "Cormorant Garamond",serif;
}
.nav-mobile-tagline em{color:rgba(30,143,193,.95);font-style:normal;font-weight:400}
.nav-mobile-sub{
  position:relative;
  z-index:2;
  color:rgba(255,255,255,.35);
  font:700 9px "Rajdhani",sans-serif;
  letter-spacing:4px;
  text-transform:uppercase;
}
.nav-ecg{position:absolute;bottom:0;left:0;right:0;z-index:1;width:100%;height:36px;opacity:.4}
.nav-ecg-line{stroke-dasharray:600;stroke-dashoffset:600;animation:navEcgLoop 3s linear infinite}
@keyframes navEcgLoop{
  0%{stroke-dashoffset:600;opacity:.3}
  20%,80%{opacity:1}
  100%{stroke-dashoffset:-600;opacity:.3}
}
.nav-mobile-links{padding:8px 0 20px}
.nav-mobile-links>a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 28px;
  border-bottom:1px solid rgba(27,52,100,.05);
  color:var(--navy);
  font-size:14px;
  font-weight:400;
}
.nav-mobile-links>a::after{content:"→";color:var(--blue);font-size:12px;opacity:.65}
.nav-mobile-links .nav-mobile-cta{
  display:block;
  margin:14px 28px 8px;
  padding:14px 20px;
  border:0;
  border-radius:3px;
  background:var(--navy);
  color:#fff;
  font:700 11px "Rajdhani",sans-serif;
  letter-spacing:2.5px;
  text-align:center;
  text-transform:uppercase;
}
.nav-mobile-links .nav-mobile-cta::after{display:none}

/* Hero and shared typography */
.hero{
  padding:76px 0 68px;
  background:linear-gradient(135deg,#10264d 0%,var(--navy) 56%,#21598a 100%);
  color:#fff;
}
.hero.small{padding:54px 0}
.eyebrow{
  color:#6fc8ea;
  font-family:"Rajdhani",sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
}
.hero h1,
.section h2,
.article h2,
.footer-brand h2{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-weight:500;
}
.hero h1{
  max-width:920px;
  margin:12px 0 18px;
  color:#fff;
  font-size:clamp(42px,6vw,72px);
  line-height:1;
  letter-spacing:-.5px;
}
.hero p{max-width:800px;margin:0;color:#dbe8f4;font-size:18px;font-weight:300}
.hero-meta{display:flex;flex-wrap:wrap;gap:12px 25px;margin-top:24px;color:#d6e5f1;font-size:13px}
.search{display:flex;max-width:760px;gap:10px;margin-top:28px}
.search input{
  flex:1;
  min-width:0;
  padding:15px 16px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:5px;
  outline:0;
  background:#fff;
  color:var(--text);
  font:400 15px "DM Sans",sans-serif;
}
.btn{padding:12px 18px;letter-spacing:.8px}
.btn-primary{background:var(--navy);color:#fff}
.hero .btn-primary{background:var(--teal)}
.btn-primary:hover{background:var(--blue);color:#fff}

/* Knowledge Center content */
.section{padding:70px 0;background:#fff}
.section.soft{background:var(--light)}
.section h2{
  margin:0 0 14px;
  color:var(--navy);
  font-size:clamp(34px,4vw,48px);
  line-height:1.08;
}
.lead{max-width:780px;color:var(--mid);font-size:17px}
.grid{display:grid;gap:22px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.card{
  min-width:0;
  display:flex;
  flex-direction:column;
  padding:26px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:var(--shadow);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.card:hover{transform:translateY(-2px);border-color:rgba(21,114,182,.35);box-shadow:0 12px 34px rgba(27,52,100,.12)}
.card h3{margin:8px 0 10px;color:var(--navy);font-size:20px;line-height:1.25}
.card p{margin:0 0 16px;color:var(--mid);font-size:14px}
.card .link{margin-top:auto;color:var(--blue);font-weight:700}
.card-meta{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:2px;
  color:var(--blue);
  font-family:"Rajdhani",sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}
.card-meta span{
  display:block;
  width:100%;
}
.trust{border-bottom:1px solid var(--line);background:#fff}
.trust-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));text-align:center}
.trust-grid div{
  padding:18px;
  border-right:1px solid var(--line);
  color:var(--navy);
  font-family:"Rajdhani",sans-serif;
  font-weight:700;
  letter-spacing:.5px;
}
.breadcrumbs{padding:14px 0;color:var(--slate);font-size:13px;overflow-wrap:anywhere}
.breadcrumbs a{color:var(--slate)}
.guide-layout{
  display:grid;
  grid-template-columns:minmax(0,780px) 300px;
  gap:50px;
  padding-top:55px;
  padding-bottom:70px;
}
.guide-layout>*,
.article,
.sidebar,
.snapshot>div,
.roadmap>div{min-width:0}
.article{max-width:100%;overflow-wrap:anywhere}
.article h2{
  margin:56px 0 16px;
  color:var(--navy);
  font-size:38px;
  line-height:1.12;
  scroll-margin-top:100px;
}
.article h3{margin:30px 0 10px;color:var(--navy);font-size:22px}
.article p,.article li{color:var(--char);font-size:16px}
.snapshot{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1px;
  overflow:hidden;
  margin-bottom:35px;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--line);
}
.snapshot div{min-width:0;padding:18px;background:#fff}
.snapshot strong{
  display:block;
  margin-bottom:5px;
  color:var(--blue);
  font:700 11px "Rajdhani",sans-serif;
  letter-spacing:1px;
  text-transform:uppercase;
}
.summary,.callout,.warning,.scenario,.checklist{margin:28px 0;padding:24px 26px;border-radius:7px}
.summary{border-left:4px solid var(--teal);background:#edf7fb}
.callout{border-left:4px solid var(--blue);background:#f2f6fb}
.warning{border-left:4px solid #c8493a;background:#fff5f3}
.scenario{border:1px solid var(--line);background:#f7f9fc}
.checklist{border-left:4px solid #23845b;background:#eef8f3}
.checklist li{margin:8px 0}
.kpi-table{width:100%;max-width:100%;margin:25px 0;border-collapse:collapse;font-size:14px}
.kpi-table th,.kpi-table td{padding:13px;border:1px solid var(--line);text-align:left;vertical-align:top}
.kpi-table th{background:var(--navy);color:#fff}
.roadmap{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:25px 0}
.roadmap div{padding:18px;border:1px solid var(--line);border-top:4px solid var(--blue);border-radius:7px;background:#fff}
.sticky{position:sticky;top:94px}
.side-card{margin-bottom:18px;padding:20px;border:1px solid var(--line);border-radius:8px;background:#fff}
.side-card h3{margin:0 0 12px;color:var(--navy)}
.toc{margin:0;padding-left:20px}
.toc li{margin:8px 0;font-size:13px}
.toc a{color:var(--mid)}
.toc a.active{color:var(--teal);font-weight:700}
.faq-item{overflow:hidden;margin:10px 0;border:1px solid var(--line);border-radius:7px;background:#fff}
.faq-button{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:18px;
  border:0;
  background:#fff;
  color:var(--navy);
  font:600 15px "DM Sans",sans-serif;
  text-align:left;
  cursor:pointer;
}
.faq-panel{display:none;padding:0 18px 18px}
.faq-item.open .faq-panel{display:block}
.banner{padding:38px;border-radius:9px;background:linear-gradient(135deg,var(--navy),#21598a);color:#fff}
.banner h2{margin-top:0;color:#fff}
.banner p{color:#dceaf5}
.banner .btn-primary{
  min-height:auto;
  padding:10px 26px;
  border-radius:3px;
  border:1px solid #fff;
  background:#fff;
  color:var(--navy);
  font:700 11px "Rajdhani",sans-serif;
  letter-spacing:2.5px;
  line-height:1.2;
  text-transform:uppercase;
}
.banner .btn-primary:hover{background:var(--light);color:var(--blue)}
.related{margin-top:35px}
.progress{position:fixed;top:0;left:0;z-index:1100;width:0;height:3px;background:var(--teal)}
.filter-row{display:flex;flex-wrap:wrap;gap:10px;margin:26px 0}
.filter{
  padding:9px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--navy);
  font:600 13px "DM Sans",sans-serif;
  cursor:pointer;
}
.filter.active{background:var(--navy);color:#fff}
.not-found{padding:100px 0;text-align:center}

/* Footer aligned with the OzaniX healthcare homepage */
.site-footer{padding:70px 72px 34px;border-top:1px solid rgba(255,255,255,.05);background:#0A1628;color:rgba(255,255,255,.7)}
.footer-wrap{max-width:1200px;margin:0 auto}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:46px;align-items:start}
.footer-brand img{display:block;width:auto;height:60px;margin-bottom:22px;background:transparent}
.footer-brand h2{margin:0;color:#fff;font-size:30px;line-height:1.15}
.footer-brand p{margin:14px 0 0;color:rgba(255,255,255,.6);font-size:14px;line-height:1.9}
.site-footer h3{
  margin:0 0 20px;
  color:var(--teal);
  font:700 12px "Rajdhani",sans-serif;
  letter-spacing:3px;
  text-transform:uppercase;
}
.site-footer a{display:block;margin:0 0 12px;color:rgba(255,255,255,.76);font-size:14px}
.site-footer a:hover{color:#fff}
.footer-social{display:flex;gap:12px;margin-top:22px}
.site-footer .footer-social a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  border:1px solid rgba(255,255,255,.15);
  border-radius:50%;
  color:#fff;
  font-weight:700;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:16px;
  margin-top:42px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.45);
  font-size:12px;
}

@media(min-width:1401px) and (max-width:1500px){
  .kc-nav{gap:18px;padding-inline:24px}
  .main-menu{gap:12px}
  .main-menu a{font-size:10.5px;letter-spacing:0}
  .kc-global-link{display:none}
  .nav-cta{padding-inline:16px}
}
@media(max-width:1400px){
  .kc-nav{justify-content:space-between;padding-inline:22px}
  .nav-tagline{
    display:flex;
    flex:1;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:var(--navy);
    font:500 11px/1.2 "DM Sans",sans-serif;
    text-align:center;
  }
  .nav-tagline em{color:var(--blue);font-family:"Cormorant Garamond",serif;font-size:14px;font-style:italic}
  .nav-burger{display:flex;margin-left:auto}
  .kc-nav-actions{display:none}
  .main-menu{display:none}
  .nav-mobile{display:block}
  .guide-layout{grid-template-columns:minmax(0,1fr)}
  .sticky{position:static}
  .snapshot{grid-template-columns:repeat(2,minmax(0,1fr))}
  .roadmap{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:700px){
  .wrap{width:calc(100% - 28px)}
  .kc-site-header,.kc-nav{height:70px}
  .kc-nav{padding-inline:14px}
  .kc-brand img{height:52px}
  .nav-mobile{top:70px;max-height:calc(100dvh - 70px)}
  .hero{padding:54px 0}
  .hero.small{padding:42px 0}
  .hero h1{font-size:40px;overflow-wrap:anywhere}
  .hero p{font-size:16px}
  .hero-meta span{max-width:100%;overflow-wrap:anywhere}
  .search{flex-direction:column}
  .section{padding:52px 0}
  .grid-2,.grid-3,.footer-grid,.trust-grid{grid-template-columns:minmax(0,1fr)}
  .trust-grid div{border-right:0;border-bottom:1px solid var(--line)}
  .snapshot,.roadmap{grid-template-columns:minmax(0,1fr)}
  .guide-layout{padding-top:35px}
  .article h2{font-size:32px}
  .article p,.article li{font-size:16px}
  .summary,.callout,.warning,.scenario,.checklist,.banner,.card{max-width:100%;padding-left:20px;padding-right:20px}
  .kpi-table{display:block;width:100%;max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
  .kpi-table th,.kpi-table td{min-width:130px}
  .card-meta{flex-direction:column;gap:2px}
  .site-footer{padding:52px 24px 28px}
  .footer-grid{gap:34px}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:7px;margin-top:38px}
}
@media print{
  .kc-site-header,.site-footer,.sidebar,.progress,.banner,.related{display:none!important}
  .guide-layout{display:block}
  .article{max-width:100%}
  body{background:#fff;font-size:11pt}
  .hero{padding:20px 0;background:#fff;color:#000}
  .hero p,.hero-meta{color:#333}
}
