:root{
  --bg:#f6f9fd;
  --alt:#f0f6fc;
  --text:#0c1420;
  --muted:rgba(12,20,32,.72);

  --brand:#0f2f4a;
  --brand-2:#1f5e94;
  --brand-3:#2b78b7;

  --shadow: 0 24px 70px rgba(15,47,74,.18);
  --shadow2: 0 16px 46px rgba(15,47,74,.12);

  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 60%, #ffffff 100%);
}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

.bg-orbs{position:fixed; inset:0; pointer-events:none; z-index:-1}
.orb{position:absolute; filter:blur(18px); opacity:.8; border-radius:999px}
.orb-1{width:420px;height:420px;left:-120px;top:-140px;background:rgba(43,120,183,.25)}
.orb-2{width:520px;height:520px;right:-220px;top:-120px;background:rgba(15,47,74,.20)}
.orb-3{width:520px;height:520px;left:20%;bottom:-260px;background:rgba(43,120,183,.14)}

.section{padding:70px 0; scroll-margin-top:100px}
.section.alt{
  background:
    radial-gradient(900px 600px at 20% 30%, rgba(43,120,183,.08), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(15,47,74,.06), transparent 60%),
    var(--alt);
  border-top:1px solid rgba(15,47,74,.06);
  border-bottom:1px solid rgba(15,47,74,.06);
}

h1,h2,h3,h4{line-height:1.12; margin:0 0 12px}
h1{font-size:clamp(34px,4.2vw,54px); letter-spacing:-.02em}
h2{font-size:clamp(26px,3.1vw,38px); letter-spacing:-.01em}
h3{font-size:20px}
p{margin:0 0 12px}
.subhead{color:var(--muted); max-width:82ch}
.lead{font-size:18px; color:var(--muted); max-width:82ch}
.micro{font-size:13px; color:var(--muted)}

.section-head{display:flex; flex-direction:column; gap:6px; margin-bottom:14px}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(15,47,74,.08);
}

.header-inner{
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 0;
}

.brand{display:flex; align-items:center; text-decoration:none}

.brand-chip{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:18px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(15,47,74,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.brand-logo{
  height:76px;
  width:auto;
  display:block;
  border-radius:12px;
}

.nav{margin-left:auto; display:flex; gap:10px}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:800;
  padding:9px 11px;
  border-radius:12px;
  position:relative;
  transition: background .15s ease, color .15s ease;
}
.nav a:hover{background:rgba(15,47,74,.06); color:var(--text)}
.nav a.active{
  background: rgba(15,47,74,.08);
  color: var(--text);
}
.nav a.active::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:-8px;
  height:3px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 55%, rgba(43,120,183,.95) 100%);
  color:#fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover{box-shadow: 0 22px 60px rgba(15,47,74,.18)}
.btn-ghost{
  background:rgba(255,255,255,.85);
  color:var(--brand);
  border:1px solid rgba(15,47,74,.12);
}
.btn-ghost:hover{background:#fff; box-shadow: var(--shadow2)}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 10px}

.hero{padding-top:52px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:26px;
  align-items:center;
}
.hero-left{min-width:0}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(15,47,74,.10);
  font-weight:900;
  color:var(--brand);
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  margin-bottom:12px;
}
.pill .dot{
  width:10px; height:10px; border-radius:999px;
  background:linear-gradient(135deg, var(--brand-2), var(--brand-3));
  box-shadow: 0 0 0 4px rgba(43,120,183,.18);
}

.trust-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.trust-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color:var(--muted);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,47,74,.10);
  padding:8px 10px;
  border-radius:999px;
}
.tick{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  border-radius:6px;
  background:rgba(43,120,183,.14);
  border:1px solid rgba(43,120,183,.22);
  color:var(--brand);
  font-weight:900;
  line-height:1;
}

.hero-card{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(15,47,74,.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding:18px;
}
.stat{
  padding:12px 10px;
  border-bottom:1px solid rgba(15,47,74,.10);
}
.stat:last-of-type{border-bottom:none}
.stat-k{display:block; font-weight:950; color:var(--brand)}
.stat-v{display:block; color:var(--muted); margin-top:4px}
.tag{
  margin-top:14px;
  display:inline-block;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(15,47,74,.06);
  border:1px solid rgba(15,47,74,.10);
  font-weight:900;
  color:var(--muted);
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
  margin-top:18px;
}

.card, .mini, .callout, .highlight, .quote{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(15,47,74,.12);
  border-radius: 22px;
  padding:18px;
  box-shadow: var(--shadow2);
  transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover{transform:translateY(-2px); box-shadow: var(--shadow)}
.card h3{color:var(--brand)}

.list{padding-left:18px; margin:10px 0 0}
.list li{margin:6px 0; color:var(--muted)}

.service-card .service-top{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  color: var(--brand);
  background: rgba(255,255,255,.75);
  border:1px solid rgba(15,47,74,.10);
}
.badge.ghost{
  color: var(--muted);
  background: rgba(15,47,74,.06);
}

.service-wide{margin-top:16px}
.wide{border-color: rgba(43,120,183,.18)}
.wide-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:center;
}
.wide-cta{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
  background: rgba(255,255,255,.65);
  border:1px solid rgba(15,47,74,.10);
}

.timeline{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:10px;
  margin-top:18px;
}
.step{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(15,47,74,.12);
  border-radius: 18px;
  padding:14px;
  text-align:center;
  box-shadow: var(--shadow2);
}
.step span{
  display:inline-flex;
  width:34px; height:34px;
  border-radius:999px;
  align-items:center; justify-content:center;
  background:rgba(43,120,183,.12);
  color:var(--brand);
  font-weight:950;
  margin-bottom:8px;
}

.highlight{
  margin-top:18px;
  border-color: rgba(43,120,183,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(247,251,255,.92) 100%);
}

.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}

.callout{
  border-color: rgba(43,120,183,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(247,251,255,.92) 100%);
}

.grid3.compact{margin-top:16px}
.mini h4{margin:0 0 8px; color:var(--brand)}
.mini p{margin:0; color:var(--muted)}

.form{
  margin-top:18px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,47,74,.12);
  border-radius: 22px;
  padding:18px;
  box-shadow: var(--shadow);
}
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.form-grid label{font-weight:950; color:var(--text); display:block}
.form-grid input, .form-grid select, .form-grid textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border:1px solid rgba(15,47,74,.14);
  border-radius:14px;
  font:inherit;
  background:#fff;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus{
  outline:2px solid rgba(43,120,183,.18);
  border-color: rgba(43,120,183,.35);
}
.form-grid .full{grid-column: 1 / -1}
.form-actions{display:flex; align-items:center; gap:14px; margin-top:14px; flex-wrap:wrap}
.hp{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden}

.site-footer{
  border-top:1px solid rgba(15,47,74,.08);
  padding:26px 0;
}
.footer-inner{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap}

@media (max-width: 900px){
  .nav{display:none}
  .hero-grid, .split{grid-template-columns: 1fr}
  .timeline{grid-template-columns: 1fr 1fr}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .form-grid{grid-template-columns: 1fr}
  .wide-grid{grid-template-columns:1fr}
  .brand-logo{height:64px}
  .section{padding:56px 0; scroll-margin-top:92px}
}

.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}
