@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Lato:wght@400;700;800&display=swap');
:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --surface:#f8fafc;
  --primary:#1e40af;  /* Slightly darker, more professional */
  --primary2:#2563eb;
  --shadow: 0 12px 30px rgba(2,6,23,.08);
  --radius:18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
}
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ max-width:1100px; margin:0 auto; padding:0 18px; }

.muted{ color:var(--muted); }
.kicker{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:800;
}

.header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}
.brand__mark{
  width:40px;
  height:40px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
  letter-spacing:.04em;
}
.brand__name{ font-weight:900; }
.brand__sub{ font-size:13px; color:var(--muted); font-weight:700; }

.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.nav a{
  padding:8px 10px;
  border-radius:12px;
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}
.nav a:hover{ background:var(--surface); color:var(--text); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  background:#fff;
}
.btn--primary{
  background:linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  border-color:transparent;
  box-shadow: var(--shadow);
}
.btn--primary:hover{ filter:brightness(.98); }
.btn--ghost:hover{ background:var(--surface); }

.hero{
  padding:80px 0 50px;
  background:
    radial-gradient(900px 380px at 10% 10%, rgba(37,99,235,0.08), transparent 55%),
    radial-gradient(700px 320px at 90% 20%, rgba(29,78,216,0.06), transparent 60%);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:start;
}
h1{
  margin:10px 0 12px;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height:1.12;
  letter-spacing:-0.7px;
}
.lead{
  margin:0;
  color:var(--muted);
  max-width: 65ch;
  font-size:16px;
}
.hero__actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}
.pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.pill{
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.85);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card--flat{ box-shadow:none; }
.card h3{ margin:0 0 8px; }
.kpi{ margin:0 0 10px; color:var(--muted); }
.kpi strong{ color:var(--text); margin-right:8px; }

.section{ padding:42px 0; }
.section--muted{
  background:var(--surface);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.section__head h2{
  margin:6px 0 0;
  font-size:24px;
  letter-spacing:-0.3px;
}
.section__sub{ margin:10px 0 0; color:var(--muted); max-width:85ch; }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.feature{
  padding:18px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:#fff;
}
.feature p{ margin:0; color:var(--muted); font-size:14px; }
.icon {
  width: 44px; /* Fixed size */
  height: 44px; /* Fixed size */
  border-radius: 12px; /* Smooth corners */
  background: rgba(37, 99, 235, 0.10); /* Transparent blue */
  border: 1px solid rgba(37, 99, 235, 0.18); /* Subtle border */
  display: flex; 
  align-items: center; /* Center icon vertically */
  justify-content: center; /* Center icon horizontally */
  color: var(--primary); /* Use your primary blue */
  margin-bottom: 16px; /* Added space to prevent overlap with text */
  flex-shrink: 0; 
}

/* Ensure the SVG itself doesn't grow too large */
.icon svg {
  display: block;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:14px;
}

.footer{
  padding:26px 0;
  border-top:1px solid var(--line);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer p{ margin:6px 0 0; color:var(--muted); font-size:14px; }

.page{
  padding:34px 0 10px;
}
.page h1{ margin-top:0; }

.breadcrumb{ color:var(--muted); font-weight:700; font-size:14px; }

.list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.list li{ margin:8px 0; }

.contact-grid{
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap:14px;
  margin-top:14px;
}

/* Mobile */
@media (max-width: 900px){
  .hero{ padding:40px 0 30px; }
  .hero__grid{ grid-template-columns:1fr; }
  .grid3{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  
  h1{ font-size:32px; }
  .section{ padding:30px 0; }
  .container{ padding:0 20px; }
}

