:root{
  /* Your brand palette (modern blue theme) */
  --b1:#5680E9;
  --b2:#8860D0;
  --b3:#84CEEB;
  --soft:#F4F7FF;
  --text:#0b1220;
  --muted:#6b7280;
  --shadow: 0 18px 50px rgba(11,18,32,.10);
  --radius: 20px;
}

*{ box-sizing:border-box; }
html,body{ font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; color:var(--text); }

.logo{ object-fit:contain; }

.topbar{
  background: linear-gradient(135deg, var(--b1), var(--b2));
  padding: 8px 0;
}
.topbar-link{ color: rgba(255,255,255,.92); text-decoration:none; }
.topbar-link:hover{ color:#fff; }

.btn-brand{
  background: linear-gradient(135deg, var(--b1), var(--b2));
  border:0;
  color:#fff;
  border-radius:999px;
  padding: 10px 16px;
  box-shadow: 0 12px 30px rgba(86,128,233,.25);
}
.btn-brand:hover{ filter: brightness(1.05); color:#fff; }
.btn-soft{
  background: rgba(86,128,233,.10);
  border: 1px solid rgba(86,128,233,.20);
  color: var(--b1);
  border-radius:999px;
  padding: 10px 16px;
}
.btn-outline-brand{
  border: 1px solid rgba(86,128,233,.35);
  color: var(--b1);
  border-radius:999px;
  padding: 10px 16px;
}
.btn-outline-brand:hover{ background: rgba(86,128,233,.08); }

.hero{
  position:relative;
  min-height: 68vh;
  background-size: cover;
  background-position: center;
  overflow:hidden;
}
.hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(1200px 500px at 20% 30%, rgba(132,206,235,.25), transparent 60%),
              linear-gradient(180deg, rgba(11,18,32,.82), rgba(11,18,32,.25));
}
.hero-content{ position:relative; z-index:2; padding: 70px 0; color:#fff; }

.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.hero h1{ font-weight: 800; letter-spacing:-.6px; line-height:1.08; }
.hero .lead{ color: rgba(255,255,255,.86); }

.glass-card{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}

.mini-trust{
  display:grid;
  gap:12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mini-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 12px;
}
.mini-title{ font-weight: 800; font-size: 18px; }
.mini-sub{ font-size: 12px; color: rgba(255,255,255,.78); }

.section{ padding: 70px 0; }
.section-soft{ background: var(--soft); }
.kicker{ font-weight:700; color: var(--b2); letter-spacing:.2px; }
.section-title{ font-weight:800; letter-spacing:-.5px; }

.why-list{ display:grid; gap:14px; }
.why-item{ display:flex; gap:12px; align-items:flex-start; }
.why-icon{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(86,128,233,.12);
  color: var(--b1);
}
/* Optional polish for new About blocks */
.shadow-sm { box-shadow: 0 10px 30px rgba(0,0,0,.06) !important; }
.rounded-4 { border-radius: 18px !important; }
.bg-light { background: rgba(136, 96, 208, 0.06) !important; }

.why-title{ font-weight:700; }
.why-sub{ color: var(--muted); font-size: 14px; }

.grid-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.feature{
  background:#fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  height: 100%;
}
.feature-icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(136,96,208,.10);
  color: var(--b2);
  margin-bottom: 10px;
}
.feature p{ color: var(--muted); margin-bottom:0; }

.banner{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  min-height: 260px;
  background-size:cover;
  background-position:center;
  box-shadow: var(--shadow);
}
.banner.tall{ min-height: 420px; }
.banner-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,18,32,.86), rgba(11,18,32,.15));
}
.banner-content{
  position:relative; z-index:2;
  padding: 34px;
  max-width: 640px;
}

.cta-card{
  background:#fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.contact-lines{ display:grid; gap:10px; }
.contact-line{
  display:flex; gap:10px; align-items:center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(86,128,233,.06);
  color: var(--text);
  text-decoration:none;
}
.contact-line:hover{ background: rgba(86,128,233,.10); }
.c-ico{
  width: 36px; height: 36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(86,128,233,.14);
  color: var(--b1);
}

.footer{
  background: #0b1220;
  color: rgba(255,255,255,.9);
}
.footer a{ color: rgba(255,255,255,.85); text-decoration:none; }
.footer a:hover{ color:#fff; }
.footer-muted{ color: rgba(255,255,255,.70); }
.footer-links{ list-style:none; padding:0; margin:0; }
.footer-links li{ margin: 8px 0; }
.footer-social{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.mobile-bar{
  position: fixed;
  left:0; right:0; bottom:0;
  z-index: 9999;
  padding: 10px 0;
  background: rgba(11,18,32,.92);
  border-top: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  display:none;
}

@media (max-width: 991px){
  .mobile-bar{ display:block; }
  body{ padding-bottom: 80px; }
}

@media (max-width: 575px){
  .mini-trust{ grid-template-columns: 1fr; }
  .grid-cards{ grid-template-columns: 1fr; }
}
/* Optional polish */
.shadow-sm { box-shadow: 0 10px 30px rgba(0,0,0,.06) !important; }
.rounded-4 { border-radius: 18px !important; }
.bg-light { background: rgba(136, 96, 208, 0.06) !important; } /* matches your purple vibe */

