/* ============================================================
   QUANTAPS • LinkedIn BlueGlass Guide UI
   ============================================================ */

.li-wrap{
  max-width:900px;
  margin:0 auto;
  padding:30px 18px 80px;
  font-family:'Inter', system-ui, sans-serif;
  color:#0f172a;
}

/* HERO */
.li-hero{
  background:linear-gradient(135deg,#d7e7ff,#edf4ff);
  border:1px solid rgba(50,90,170,.25);
  padding:32px;
  border-radius:26px;
  box-shadow:0 10px 28px rgba(0,40,120,.08);
  text-align:center;
}
.li-hero-icon{
  font-size:48px;
  margin-bottom:12px;
}
.li-title{
  font-size:clamp(26px,3.2vw,38px);
  font-weight:800;
  color:#0a4fa3;
  margin-bottom:14px;
}
.li-desc{
  font-size:17px;
  line-height:1.55;
  color:#1a2a41;
}

/* BOX */
.li-box{
  background:#fff;
  padding:24px;
  margin-top:32px;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 6px 16px rgba(0,0,0,.06);
}
.li-box h2{
  font-size:22px;
  font-weight:700;
  color:#0a4fa3;
  margin-bottom:12px;
}

.li-list{
  list-style:none;
  padding:0;
  margin:16px 0;
}
.li-list li{
  margin-bottom:10px;
  font-size:16px;
  display:flex;
  align-items:center;
}
.li-list li span{
  color:#0a4fa3;
  margin-right:8px;
  font-weight:700;
}

.li-note{
  background:#eef6ff;
  border-left:4px solid #0a4fa3;
  padding:14px;
  font-size:15px;
  border-radius:8px;
  margin-top:18px;
}

.li-alt{
  background:#f7faff;
}

/* CTA */
.li-cta{
  margin-top:40px;
  text-align:center;
  padding:28px;
  background:linear-gradient(135deg,#e3efff,#edf6ff);
  border-radius:22px;
  border:1px solid rgba(0,60,160,.15);
}
.li-cta-title{
  font-size:24px;
  font-weight:800;
  color:#053c85;
  margin-bottom:14px;
}
.li-cta-desc{
  font-size:17px;
  margin-bottom:18px;
}
.li-cta-btn{
  display:inline-block;
  padding:14px 26px;
  background:#0a66c2;
  color:#fff;
  border-radius:14px;
  font-size:17px;
  font-weight:700;
  text-decoration:none;
  transition:.2s ease;
}
.li-cta-btn:hover{
  background:#084f96;
}