@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root{
  --bg:#f6f9ff;
  --card:#ffffff;
  --ink:#0a1b3a;
  --muted:#4b5c7a;
  --line: rgba(10, 27, 58, .12);
  --shadow: 0 18px 50px rgba(12, 22, 45, .10);

  --blue1:#4fb3ff;
  --blue2:#2a7cff;
  --blue3:#0a5fd6;
  --pill: linear-gradient(135deg, rgba(79,179,255,.95), rgba(42,124,255,.92));
  --pill2: linear-gradient(135deg, rgba(42,124,255,.95), rgba(10,95,214,.92));
  --radius: 18px;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial;color:var(--ink);background:var(--bg);}
a{color:inherit;text-decoration:none}

.container{width:min(var(--max), calc(100% - 34px)); margin-inline:auto;}

.topbar{
  background: linear-gradient(90deg, rgba(79,179,255,.18), rgba(42,124,255,.18));
  border-bottom: 1px solid rgba(42,124,255,.22);
}
.topbar .inner{
  display:flex; justify-content:space-between; align-items:center; gap:14px;
  padding:10px 0;
  font-size:13px;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.3px;
}
.dot{
  width:10px;height:10px;border-radius:999px;background:#1ad17f;
  box-shadow:0 0 0 0 rgba(26,209,127,.45);
  animation:pulse 1.4s infinite;
}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(26,209,127,.45)}70%{box-shadow:0 0 0 12px rgba(26,209,127,0)}100%{box-shadow:0 0 0 0 rgba(26,209,127,0)}}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 16px; border-radius: 12px;
  border:1px solid rgba(10,27,58,.12);
  background:#fff;
  font-weight:800;
  box-shadow: 0 10px 26px rgba(12,22,45,.06);
}
.btn.primary{border-color:transparent; background:var(--pill); color:white;}
.btn.secondary{border-color:transparent; background:var(--pill2); color:white;}
.btn.small{padding:9px 12px; border-radius: 10px; font-size:13px; box-shadow:none;}

.nav{
  background:rgba(246,249,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(10,27,58,.08);
  position:sticky; top:0; z-index:50;
}
.nav .inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0;}
.brand{display:flex; align-items:center; gap:12px;}
.brand img{width:52px;height:52px;object-fit:contain}
.brand .t1{font-weight:900; font-size:16px; line-height:1.1}
.brand .t2{font-size:12px; color:var(--muted); font-weight:700; margin-top:3px}
.links{display:flex; gap:18px; align-items:center; font-weight:700; color:rgba(10,27,58,.74);}
.links a:hover{color:var(--ink)}
@media (max-width: 900px){ .links{display:none} }

.hero{
  padding: 18px 0 0;
}
.heroBanner{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(10,27,58,.10);
  box-shadow: var(--shadow);
  background:
    radial-gradient(1200px 600px at 0% 0%, rgba(79,179,255,.35), transparent 55%),
    radial-gradient(1100px 650px at 100% 20%, rgba(42,124,255,.25), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.86));
  position:relative;
}



.heroBanner:before{
  content:"";
  position:absolute; inset:0;
  background: url("bg.jpg");
  background-size: cover;
  background-position: left center;
  opacity:.55;
  filter: blur(0px) saturate(1.05);
}
.heroBanner:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(246,249,255,.92), rgba(246,249,255,.72));
}

.heroGrid{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:16px;
  padding: 28px 28px;
  align-items:center;
}
@media (max-width: 920px){ .heroGrid{grid-template-columns:1fr} }

.hTitle{
  font-size: 34px;
  line-height:1.15;
  margin:0 0 10px;
  font-weight:900;
  color: #0a2a55;
}
.hTitle span{color: var(--blue3);}
.hSub{
  margin:0 0 16px;
  max-width: 62ch;
  color: rgba(10,27,58,.75);
  line-height:1.55;
  font-weight:600;
}
.heroCtas{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.pillRow{display:flex; gap:12px; flex-wrap:wrap}
.promoPill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(42,124,255,.18);
  font-weight:900;
  color:#0a2a55;
}

.section{
  padding: 26px 0;
}
.sectionTitle{
  text-align:center;
  margin: 4px 0 6px;
  font-size: 26px;
  font-weight:900;
  color:#0a2a55;
}
.sectionLead{
  text-align:center;
  margin:0 auto 18px;
  max-width: 78ch;
  color: rgba(10,27,58,.72);
  line-height:1.6;
  font-weight:600;
}

.cardGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 920px){ .cardGrid{grid-template-columns:1fr} }

.card{
  background: var(--card);
  border:1px solid rgba(10,27,58,.10);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(12,22,45,.08);
  overflow:hidden;
}
.cardHeader{
  padding:16px 18px;
  background: linear-gradient(180deg, rgba(79,179,255,.16), rgba(255,255,255,.92));
  border-bottom:1px solid rgba(10,27,58,.08);
  font-weight:900;
  color:#0a2a55;
}
.cardBody{padding:16px 18px}

.row{
  display:flex; gap:12px; align-items:flex-start;
  padding:10px 0;
  border-bottom: 1px dashed rgba(10,27,58,.12);
}
.row:last-child{border-bottom:none}
.icon{
  width:34px;height:34px;border-radius:999px;
  background: linear-gradient(135deg, rgba(79,179,255,.95), rgba(42,124,255,.92));
  display:grid; place-items:center; color:white; flex:0 0 auto;
  box-shadow: 0 10px 22px rgba(42,124,255,.18);
}
.row b{display:block; font-size:14px}
.row span{display:block; color: rgba(10,27,58,.70); margin-top:2px; font-weight:600; line-height:1.45; font-size:13px}

.band{
  margin-top: 16px;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(79,179,255,.18), rgba(42,124,255,.12));
  border: 1px solid rgba(42,124,255,.18);
  padding: 18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:center;
}
@media (max-width: 920px){ .band{grid-template-columns:1fr} }

.band h3{margin:0 0 6px; font-size:22px; font-weight:900; color:#0a2a55}
.band p{margin:0; color: rgba(10,27,58,.72); line-height:1.55; font-weight:600}
.checks{
  display:grid; grid-template-columns:1fr 1fr; gap:8px;
}
.check{
  display:flex; gap:10px; align-items:flex-start;
  color: rgba(10,27,58,.78); font-weight:700; font-size:13px;
}
.check svg{flex:0 0 auto; margin-top:2px}
.footer{
  padding: 26px 0 36px;
  border-top:1px solid rgba(10,27,58,.10);
  background: #ffffff;
}
.footerGrid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; align-items:start;
}
@media (max-width: 920px){ .footerGrid{grid-template-columns:1fr} }
.small{color:rgba(10,27,58,.70); font-weight:600; font-size:13px; line-height:1.6}

.fab{
  position:fixed; right:16px; bottom:16px; z-index:60;
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 14px; border-radius:999px;
  border:1px solid rgba(26,209,127,.35);
  background: linear-gradient(180deg, rgba(26,209,127,.16), rgba(255,255,255,.92));
  box-shadow: 0 18px 60px rgba(12,22,45,.16);
  font-weight:900;
}
.fab span{font-size:13px}

/* --- Remove Haze / Grey Overlay --- */
body:before,
.hero:before,
.hero:after,
.heroBanner:before,
.heroBanner:after {
    display: none !important;
    opacity: 0 !important;
    filter: none !important;
}

/* --- Clean Blue & White Theme Upgrade --- */
body {
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%) !important;
}

.section {
    background: #ffffff !important;
}

.band {
    background: linear-gradient(90deg, #eaf2ff 0%, #ffffff 100%) !important;
}

.card {
    background: #ffffff !important;
    box-shadow: 0 15px 40px rgba(0, 70, 200, 0.08) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #2a7cff, #0056d6) !important;
    border: none !important;
}

.btn-secondary {
    background: linear-gradient(135deg, #4fb3ff, #2a7cff) !important;
    border: none !important;
}

footer {
    background: #ffffff !important;
    border-top: 1px solid #e6efff !important;
}
