:root{
  --bg1:#ffffff;
  --bg2:#f6f8fc;
  --card:#ffffff;
  --text:#0b1220;
  --muted:#506076;
  --border:rgba(15,23,42,.10);
  --shadow: 0 18px 40px rgba(2,6,23,.10);
  --blue:#0b5cff;
  --blue2:#0b3db9;
  --orange:#f28b2c;
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 70%);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{display:flex; align-items:center; gap:12px; font-weight:800}
.brand-logo{width:38px;height:38px;border-radius:12px}
.brand-text{letter-spacing:-.2px}

.nav{display:flex; align-items:center; gap:18px; color:var(--muted); font-weight:700}
.nav a{padding:10px 10px; border-radius:12px}
.nav a:hover{background:rgba(11,92,255,.06); color:var(--text)}
.nav-cta{
  background:rgba(11,92,255,.10);
  color:var(--blue);
  border:1px solid rgba(11,92,255,.18);
}

.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.nav-toggle span{
  display:block;width:18px;height:2px;background:var(--text); border-radius:2px;
}

.mobile-nav{
  display:none;
  border-top:1px solid var(--border);
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}
.mobile-nav-inner{
  padding:16px 0 18px;
  display:grid;
  gap:10px;
  color:var(--muted);
  font-weight:800;
}

.hero{padding:44px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:26px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(11,92,255,.10);
  border:1px solid rgba(11,92,255,.18);
  color:var(--blue);
  font-weight:800;
  font-size:13px;
}

h1{
  margin:14px 0 10px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-1px;
}
.accent{color:var(--orange)}
.lead{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
  max-width:52ch;
}

.cta-row{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background:var(--blue);
  border-color: rgba(11,92,255,.35);
  color:#fff;
  box-shadow: 0 12px 26px rgba(11,92,255,.18);
}
.btn-primary:hover{background:var(--blue2)}
.btn-secondary{
  background:transparent;
}
.btn-secondary:hover{background:rgba(2,6,23,.04)}

.trust-row{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:12px 14px;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.trust-item{display:flex; align-items:center; gap:8px}
.dot{width:8px;height:8px;border-radius:999px;background:rgba(11,92,255,.45)}

.hero-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-card img{width:100%}

.section{padding:30px 0}
.section-head{margin-bottom:14px}
.section-head h2{margin:0 0 6px;font-size:30px;letter-spacing:-.5px}
.section-head p{margin:0;color:var(--muted);line-height:1.6}

.cards-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.cards-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
}
.card-top{display:flex; align-items:center; gap:10px; margin-bottom:6px}
.badge{
  width:30px;height:30px;
  border-radius:10px;
  display:grid; place-items:center;
  font-weight:900;
  color:var(--blue);
  background:rgba(11,92,255,.10);
  border:1px solid rgba(11,92,255,.18);
}
.card h3{margin:0;font-size:18px}
.card p{margin:8px 0 0;color:var(--muted);line-height:1.6}

.list{margin:12px 0 16px; padding-left:18px; color:var(--muted); line-height:1.7}
.card-highlight{
  border-color: rgba(11,92,255,.25);
  box-shadow: 0 18px 40px rgba(11,92,255,.10);
}

.cta-panel{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px;
  border-radius:var(--radius);
  background: linear-gradient(135deg, rgba(11,92,255,.08), rgba(242,139,44,.10));
  border:1px solid var(--border);
}
.cta-panel h2{margin:0 0 6px; font-size:26px; letter-spacing:-.4px}
.cta-panel p{margin:0; color:var(--muted)}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap}

.footer{
  padding:26px 0 34px;
  border-top:1px solid var(--border);
  color:var(--muted);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-left{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.footer-left strong{color:var(--text)}

/* Responsive */
@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:38px}
  .cards-3{grid-template-columns:1fr}
  .cards-2{grid-template-columns:1fr}
  .nav{display:none}
  .nav-toggle{display:inline-flex}
  .mobile-nav.show{display:block}
}